Unverified Commit 74cdcde4 authored by Honza Hommer's avatar Honza Hommer
Browse files

fix: remove :xdigit:

parent a9c4b8dd
......@@ -58,7 +58,7 @@ teams_send() {
_color="$TEAMS_SKIP_COLOR"
;;
esac
_color="$(echo "${_color:-$TEAMS_THEME_COLOR}" | tr -cd '[:xdigit:]')"
_color="$(echo "${_color:-$TEAMS_THEME_COLOR}" | tr -cd 'a-fA-F0-9')"
_data="{\"title\": \"$_subject\","
if [ -n "$_color" ]; then
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment