Fixed bug in how hashtags are found

This commit is contained in:
Raynor 2022-12-26 17:50:05 +00:00
parent 1f9d8adc14
commit 2cc0d91ca4
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ do
echo "[INFO] Opening federated line $line"
#Check for hashtags
if [[ "$line" == *" #"* ]]; then
if [[ "$line" == *" "* ]]; then
echo "$line has hashtags!"