Browse Source

Android: remove escape characters from file paths when sharing files.

tags/2021-05-28
Lukasz Kozakiewicz 7 years ago
parent
commit
8e28a68bd0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_gui_basics/native/juce_android_ContentSharer.cpp

+ 1
- 1
modules/juce_gui_basics/native/juce_android_ContentSharer.cpp 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);


Loading…
Cancel
Save