mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 07:44:37 +00:00
fix a bug
eyeD3 throws an error if a description containing a ":". so escape it first
This commit is contained in:
parent
039f84f640
commit
86e19f2089
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue