Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.3.0
-
None
-
None
-
ios
Description
when i try to FileTransfer.download(...) a file (code itself used to work in 2.7) my app now crashes.
Step-Debugging revealed, that in CDVFile#fileSystemURLforLocalPath (Line 267) all available filesystems are tested. One of those appears to be a CDVAssetLibraryFilesystem - which does not implement URLforFilesystemPath
I added a dummy URLforFilesystemPath wich just returns nil. This got me around the crash, but now i'm stuck with a FILE_NOT_FOUND_ERR, which is probably my own responsibility. But the aforementioned crash took me a while to find.