This commit is contained in:
Bob Mottram 2017-04-03 22:54:39 +01:00
parent 417a6fed14
commit ed1df8bdf5
1 changed files with 4 additions and 4 deletions

View File

@ -41,13 +41,13 @@ function pleroma_set_background_image_from_url {
ext=
if [ ${#url} -gt 0 ]; then
if [[ $url == *".jpeg" || $url == *".jpg" ]]; then
if [[ "$url" == *".jpeg" || "$url" == *".jpg" ]]; then
ext="jpg"
fi
if [[ $url == *".png" ]]; then
if [[ "$url" == *".png" ]]; then
ext="png"
fi
if [[ $url == *".gif" ]]; then
if [[ "$url" == *".gif" ]]; then
ext="gif"
fi
fi
@ -62,7 +62,7 @@ function pleroma_set_background_image_from_url {
fi
# get the new image
wget $url -O bg_custom.${ext}
wget "$url" -O bg_custom.${ext}
if [ ! -f bg_custom.${ext} ]; then
echo "$url"
echo $'Custom background image for pleroma could not be downloaded'