Refactoring

This commit is contained in:
M66B
2021-04-04 13:45:32 +02:00
parent e54a9a2ecd
commit 2fe8e58cf9
6 changed files with 13 additions and 8 deletions

View File

@@ -1113,6 +1113,10 @@ public class Helper {
static boolean isSingleScript(String s) {
// https://en.wikipedia.org/wiki/IDN_homograph_attack
if (TextUtils.isEmpty(s))
return true;
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N)
return true;