From e2e3244eee4429aef9a2fd158beeccdd5bac0b9b Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 7 Aug 2020 23:36:57 +0200 Subject: Fixed extended mime types --- opener | 2 +- phttp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opener b/opener index d9160fb..6ece94e 100755 --- a/opener +++ b/opener @@ -2,7 +2,7 @@ case "$1" in application/pdf) exec zathura "$3";; image/*) exec sxiv "$3";; - text/html) exec ./viewhtml "$3" "$2";; + text/html*) exec ./viewhtml "$3" "$2";; text/*) exec less "$3";; *) echo "\e[31m$1\e[0m $2 $3";; esac diff --git a/phttp b/phttp index d74ac9b..cb6d504 100755 --- a/phttp +++ b/phttp @@ -15,7 +15,7 @@ get_with_arguments() { return } local META - META=$(curl -sL -w "%{content_type} %{url_effective}\n" $@ -o "$PHTTP_CACHE/files/$BASENAME") && { + META=$(curl -sL -w "\"%{content_type}\" %{url_effective}\n" $@ -o "$PHTTP_CACHE/files/$BASENAME") && { META="$(echo $META | rev | cut -d/ -f2- | rev)/" echo "$META $PHTTP_CACHE/files/$BASENAME" echo "$META" > $PHTTP_CACHE/meta/$BASENAME -- cgit v1.1