Only use the first 4 characters of the year if a datetime is found.

This commit is contained in:
2025-12-17 19:23:11 -07:00
parent 8129858ffd
commit 6165d93422

View File

@@ -163,6 +163,7 @@ function migrate_music {
while [[ "$year" == *" "* ]]; do
year="${year// / }"
done
year="${year:0:4}"
echo "*** Year=$year ($year_source)"
parent=""