Skip to content

Commit

Permalink
Merge pull request #237 from TheLastGimbus/windoza-trim-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLastGimbus authored Sep 12, 2023
2 parents 6a7c6c4 + 3d48ffd commit 58ed087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/moving.dart
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Stream<int> moveFiles(
final folder = Directory(
p.join(
output.path,
file.key ?? 'ALL_PHOTOS', // album or all
file.key?.trim() ?? 'ALL_PHOTOS', // album or all
divideToDates
? date == null
? 'date-unknown'
Expand Down

0 comments on commit 58ed087

Please sign in to comment.