diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-28 08:50:15 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 02:41:27 -0800 |
commit | e03d53bbbe631a0577c537c5ac6f6048481b502b (patch) | |
tree | 1486b25b9bc957ee705b9dde01d8038d01e60818 | |
parent | b8f1a18a5d02d3f08dd2a26115a92ac72a2a3cc4 (diff) |
Browser URLs are managed by the controller, not the view.
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index a5f5776..2b6c632 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -4684,7 +4684,7 @@ static NSMutableSet *Diversions_; } - (NSURL *) navigationURL { - return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://url/%@", [[[webview_ request] URL] absoluteString]]]; + return [NSURL URLWithString:[NSString stringWithFormat:@"cydia://url/%@", [[request_ URL] absoluteString]]]; } + (void) initialize { |