You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to #82, it looks like uploadFiles() does not support special characters (e.g. ö, ä, ü) in paths / file names; or at least on Android including special characters alters the upload results in an unexpected way.
The text was updated successfully, but these errors were encountered:
There is an issue with auto-detection of MIME-types for filenames with special characters (it is used to auto-set Content-Type for the uploaded file when no filetype option is provided explicitly for that file). The problem happens here:
val extension =MimeTypeMap.getFileExtensionFromUrl(path)
that MimeTypeMap.getFileExtensionFromUrl(path) (coming from Android library) returns empty string for filenames with special characters, e.g./data/user/0/drpogodin.reactnativefs.example/cache/öäü-upload-file-2.txt, while it correctly returns txt for /data/user/0/drpogodin.reactnativefs.example/cache/upload-file-2.txt
Similar to #82, it looks like uploadFiles() does not support special characters (e.g.
ö
,ä
,ü
) in paths / file names; or at least on Android including special characters alters the upload results in an unexpected way.The text was updated successfully, but these errors were encountered: