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

Windows: Remove escaped characters from video URL before loading in VideoComponent

This commit is contained in:
ed 2018-07-16 14:58:33 +01:00
parent 3c93cfb105
commit 32bb8f5bbc

View file

@ -202,7 +202,7 @@ struct VideoComponent::Pimpl : public Component
Result load (const URL& url)
{
auto r = loadFromString (url.toString (true));
auto r = loadFromString (URL::removeEscapeChars (url.toString (true)));
if (r.wasOk())
currentURL = url;