get_ascii: Do not parse file if it's an image file

This commit is contained in:
Muhammad Herdiansyah 2018-08-24 11:07:36 +07:00
parent 17f2f5b2a6
commit 754ffe2fae
1 changed files with 1 additions and 1 deletions

View File

@ -3393,7 +3393,7 @@ image_backend() {
}
get_ascii() {
if [[ -f "$image_source" ]]; then
if [[ -f "$image_source" && ! "$image_source" =~ (png|jpg|jpeg|jpe|svg|gif) ]]; then
ascii_data="$(< "$image_source")"
else
err "Ascii: Ascii file not found, using distro ascii."