1
0
Fork 0
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:
Lukasz Kozakiewicz 2017-12-28 16:51:46 +01:00
parent f7741ee085
commit 8e28a68bd0

View file

@ -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);