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:
parent
f1aef382ad
commit
a05abbf6d0
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue