Browse Source

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

tags/2021-05-28
ed 7 years ago
parent
commit
32bb8f5bbc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_video/native/juce_win32_Video.h

+ 1
- 1
modules/juce_video/native/juce_win32_Video.h 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;


Loading…
Cancel
Save