diff options
Diffstat (limited to 'embed')
-rw-r--r-- | embed/mozilla/EphyAboutRedirector.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/embed/mozilla/EphyAboutRedirector.cpp b/embed/mozilla/EphyAboutRedirector.cpp index e5b879ed6..54a602673 100644 --- a/embed/mozilla/EphyAboutRedirector.cpp +++ b/embed/mozilla/EphyAboutRedirector.cpp @@ -89,6 +89,8 @@ EphyAboutRedirector::NewChannel(nsIURI *aURI, nsIChannel **result) nsnull, nsnull, getter_AddRefs(tempChannel)); NS_ENSURE_TRUE (tempChannel, NS_ERROR_FAILURE); + tempChannel->SetOriginalURI(aURI); + *result = tempChannel.get(); NS_ADDREF(*result); |