Skip to content

Commit

Permalink
Update file_manager.vala
Browse files Browse the repository at this point in the history
  • Loading branch information
Alphastaire committed Aug 17, 2024
1 parent 354d81d commit 0ad67f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libdino/src/service/file_manager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class FileManager : StreamInteractionModule, Object {
#if _WIN32
GLib.Regex regex = new GLib.Regex("[<>:\"/\\|?*]");
#else
GLib.Regex regex = new GLib.Regex("[/\\x{00}]");
GLib.Regex regex = new GLib.Regex("[/]");
#endif
return regex.replace(filename, -1, 0, "_");
}
Expand Down

0 comments on commit 0ad67f3

Please sign in to comment.