diff options
author | Sam Bingner <sam@bingner.com> | 2019-05-03 22:15:31 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2019-05-03 22:15:31 -1000 |
commit | 5b200555808e798a08210f5697ad7ba80c6fdc70 (patch) | |
tree | 58cee835ede30eea24506103971d1c770e167873 /MobileCydia.mm | |
parent | 8eaae323e6dd16f363bab7306328f358951e09c0 (diff) |
Block another repo that is incompatible with elucubratusv1.1.32%b14
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 5242fbb..21d1a67 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -753,7 +753,8 @@ bool isSectionVisible(NSString *section) { static NSString *VerifySource(NSString *href) { static RegEx href_r("(http(s?)://|file:///)[^# ]*"); - if (!href_r(href) || [href rangeOfString:@"electra" options:NSCaseInsensitiveSearch].location != NSNotFound) { + if (!href_r(href) || [href rangeOfString:@"electra" options:NSCaseInsensitiveSearch].location != NSNotFound || + [href rangeOfString:@"chimera" options:NSCaseInsensitiveSearch].location != NSNotFound) { [[[[UIAlertView alloc] initWithTitle:[NSString stringWithFormat:Colon_, Error_, UCLocalize("INVALID_URL")] message:UCLocalize("INVALID_URL_EX") |