fluttercommunity / flutter_downloader

Flutter Downloader - A plugin for creating and managing download tasks.
https://pub.dev/packages/flutter_downloader
BSD 3-Clause "New" or "Revised" License
907 stars 511 forks source link

Fixed bug in the ios sanitizeFilename method #921

Closed ronjb closed 9 months ago

ronjb commented 10 months ago

Fixed bug in the ios sanitizeFilename method in ios/Classes/FlutterDownloaderPlugin.m.

It was calling invertSet on allowedCharacters which made it a set of disallowed characters, so the filename just becomes a list of '_' chars.

salmaahhmed commented 9 months ago

Thanks