1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-17 00:44:19 +00:00

Fixed an issue where the character encoding of WebBrowserComponent error messages on macOS was incorrectly displayed

This commit is contained in:
hogliux 2017-05-03 10:14:00 +01:00
parent f1aef382ad
commit a05abbf6d0

View file

@ -92,7 +92,7 @@ private:
// WebKit doesn't have an internal error page, so make a really simple one ourselves
if (proceedToErrorPage)
getOwner(self)->goToURL (String ("data:text/plain,") + errorString);
getOwner(self)->goToURL (String ("data:text/plain;charset=UTF-8,") + errorString);
}
}