Fix saving issues when post title contains /

This commit is contained in:
Xerbo 2019-07-24 11:48:15 +01:00
parent 31f5472734
commit 2cf9beb3d3

View file

@ -125,6 +125,7 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
description=$(grep 'og:description" content="' "$tempfile" | cut -d '"' -f4)
title=$(grep 'og:title" content="' "$tempfile" | cut -d '"' -f4)
title="${title%" by"*}" # Remove the " by Artist" bit
title="$(echo $title | tr -d "/")"
file_type=${image_url##*.}
file="$outdir/$title.$file_type"