mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-16 00:34:19 +00:00
Android: remove escape characters from file paths when sharing files.
This commit is contained in:
parent
f7741ee085
commit
8e28a68bd0
1 changed files with 1 additions and 1 deletions
|
|
@ -261,7 +261,7 @@ private:
|
|||
if (threadShouldExit())
|
||||
return;
|
||||
|
||||
auto filepath = f.toString (true).fromFirstOccurrenceOf ("file://", false, false);
|
||||
auto filepath = URL::removeEscapeChars (f.toString (true).fromFirstOccurrenceOf ("file://", false, false));
|
||||
|
||||
filePaths.add (filepath);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue