summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MobileCydia.mm3
1 files changed, 2 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm
index c0c9705..d60ef0a 100644
--- a/MobileCydia.mm
+++ b/MobileCydia.mm
@@ -1776,7 +1776,8 @@ static void PackageImport(const void *key, const void *value, void *context) {
host_ = [host_ lowercaseString];
if (host_ != nil)
- authority_ = host_;
+ // XXX: this is due to a bug in _H<>
+ authority_ = (id) host_;
else
authority_ = [url path];
}