From ec75871d5ddf65ea510069866edf7090e3c99604 Mon Sep 17 00:00:00 2001 From: duqingquan Date: Wed, 28 Sep 2022 17:46:05 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=98=E5=8E=9F=E9=83=A8=E5=88=86=E5=9C=BA?= =?UTF-8?q?=E6=99=AF=20uts=20for=E5=BE=AA=E7=8E=AF=E5=86=99=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../uts-screenshot-listener/utssdk/app-android/index.uts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uni_modules/uts-screenshot-listener/utssdk/app-android/index.uts b/uni_modules/uts-screenshot-listener/utssdk/app-android/index.uts index 391899f..85d204e 100644 --- a/uni_modules/uts-screenshot-listener/utssdk/app-android/index.uts +++ b/uni_modules/uts-screenshot-listener/utssdk/app-android/index.uts @@ -213,7 +213,7 @@ function checkScreenShot(data?: string, dateTaken: Long, width: Int, height: Int let lowerData = data.lowercase(Locale.getDefault()) // 判断图片路径是否含有指定的关键字之一, 如果有, 则认为当前截屏了 - for (let keyWork in KEYWORDS) { + for (keyWork in KEYWORDS) { if (lowerData.contains(keyWork)) { return true } -- GitLab