Skip to content

Commit

Permalink
Update file_storage.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
yaelliethy authored Sep 13, 2024
1 parent 2fe8653 commit c1a0ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/services/file_storage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class FileStorage {
String fileName = song['title'];
final RegExp avoid = RegExp(r'[\.\\\*\:\(\)\"\?#/;\|]');
fileName = fileName.replaceAll(avoid, '').replaceAll("'", '');
fileName = Uri.decodeFull(fileName);
//fileName = Uri.decodeFull(fileName);
if (!(await requestPermissions())) return null;
Directory directory = await _getDirectory(storagePaths.musicPath);

Expand Down

0 comments on commit c1a0ef9

Please sign in to comment.