fix a bug

eyeD3 throws an error if a description containing a ":". so escape it first
This commit is contained in:
Liam 2019-04-04 19:09:10 +01:00 committed by GitHub
parent 039f84f640
commit 86e19f2089
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -143,7 +143,12 @@ https://github.com/Xerbo/furaffinity-dl-ng/issues" >&2
else
# Use eyeD3 for injecting injecting metadata into audio files (if it's installed)
if [ $eyed3 ] && [ $metadata ]; then
eyeD3 -t "$title" --add-comment "$description" "$file"
if [ -z "$description" ]; then
eyeD3 -t "$title" "$file"
else
# HACK eyeD3 throws an error if a description containing a ":"
eyeD3 -t "$title" --add-comment "${description//:/\\:}" "$file"
fi
fi
fi
done