APK RegEx Filter + Updated Packages

This commit is contained in:
Imran Remtulla
2023-01-28 00:04:57 -05:00
parent f43e5a2ff1
commit fa2a80e34c
14 changed files with 830 additions and 676 deletions

View File

@ -65,15 +65,7 @@ class GitHub extends AppSource {
required: false,
additionalValidators: [
(value) {
if (value == null || value.isEmpty) {
return null;
}
try {
RegExp(value);
} catch (e) {
return tr('invalidRegEx');
}
return null;
return regExValidator(value);
}
])
]