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:
parent
3c93cfb105
commit
32bb8f5bbc
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue