diff options
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index e44d82b..776c31c 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -4309,7 +4309,7 @@ static _H<NSMutableSet> Diversions_; bool token; @synchronized (HostConfig_) { - token = [TokenHosts_ containsObject:host]; + token = [TokenHosts_ containsObject:host] || [BridgedHosts_ containsObject:host]; } if ([url isCydiaSecure] && token) { |