#1 TypeError: Cannot read properties of undefined (reading 'toLowerCase') [v1.10.8-15, all] #2

Merged
q merged 13 commits from jon/element-web-patches:master into master 2022-03-31 16:19:31 -04:00
Showing only changes of commit 6362b0a28d - Show all commits

View File

@ -0,0 +1,6 @@
#!/bin/sh
base="https://raw.githubusercontent.com/milesj/emojibase/master/packages/data/en"
for file in compact.raw.json data.raw.json; do
echo "$file:"
curl -sf "$base/$file" | jq '.[] | select(.hexcode == "2721")' || exit $?
done