Open amirito opened 3 years ago
in getReceivedFiles replaces spaces in file name with %20 and it causes problems in iOS I can replace it again but it is not the best way. is there any other way to solve this issue?
getReceivedFiles
%20
The strings are all URI encoded. Simply decode them like this:
const filePath = decodeURI(file.filePath); const fileName = decodeURI(file.fileName);
in
getReceivedFiles
replaces spaces in file name with%20
and it causes problems in iOS I can replace it again but it is not the best way. is there any other way to solve this issue?