Index: src/plugin/PluginClass.cpp |
=================================================================== |
--- a/src/plugin/PluginClass.cpp |
+++ b/src/plugin/PluginClass.cpp |
@@ -188,7 +188,6 @@ |
if (SUCCEEDED(browser->get_LocationURL(&bstrURL)) && bstrURL) |
{ |
url = std::wstring(bstrURL, SysStringLen(bstrURL)); |
- UnescapeUrl(url); |
} |
} |
else |
@@ -484,7 +483,6 @@ |
return; |
} |
std::wstring url(urlVariant->bstrVal, SysStringLen(urlVariant->bstrVal)); |
- UnescapeUrl(url); |
// If webbrowser2 is equal to top level browser (as set in SetSite), we are |
// navigating new page |
@@ -545,7 +543,6 @@ |
return; |
} |
std::wstring frameSrc = GetLocationUrl(*webBrowser2); |
- UnescapeUrl(frameSrc); |
bool isRootPageBrowser = GetBrowser().IsEqualObject(webBrowser2); |
m_tab->OnDocumentComplete(webBrowser2, frameSrc, isRootPageBrowser); |
} |