From 04f7858ab3a4ae343dee401efc7ecd777d422b1b Mon Sep 17 00:00:00 2001 From: Sam Bingner Date: Fri, 3 May 2019 22:15:31 -1000 Subject: Block another repo that is incompatible with elucubratus --- Sources.mm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Sources.mm') diff --git a/Sources.mm b/Sources.mm index d3bf841..2a64210 100644 --- a/Sources.mm +++ b/Sources.mm @@ -59,7 +59,8 @@ void CydiaWriteSources() { continue; // Don't add Electra sources - if ([[source objectForKey:@"URI"] rangeOfString:@"electra" options:NSCaseInsensitiveSearch].location != NSNotFound) + if ([[source objectForKey:@"URI"] rangeOfString:@"electra" options:NSCaseInsensitiveSearch].location != NSNotFound || + [[source objectForKey:@"URI"] rangeOfString:@"chimera" options:NSCaseInsensitiveSearch].location != NSNotFound) continue; NSArray *sections([source objectForKey:@"Sections"] ?: [NSArray array]); @@ -82,7 +83,8 @@ void CydiaAddSource(NSDictionary *source) { return; // Don't add Electra sources - if ([[source objectForKey:@"URI"] rangeOfString:@"electra" options:NSCaseInsensitiveSearch].location != NSNotFound) + if ([[source objectForKey:@"URI"] rangeOfString:@"electra" options:NSCaseInsensitiveSearch].location != NSNotFound || + [[source objectForKey:@"URI"] rangeOfString:@"chimera" options:NSCaseInsensitiveSearch].location != NSNotFound) return; [Sources_ setObject:source forKey:[NSString stringWithFormat:@"%@:%@:%@", [source objectForKey:@"Type"], [source objectForKey:@"URI"], [source objectForKey:@"Distribution"]]]; -- cgit v1.2.3