diff --git a/src/Model/Item.php b/src/Model/Item.php index 0e8218929..f6d08047b 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -2611,7 +2611,7 @@ class Item // This sorting is important when there are hashtags that are part of other hashtags // Otherwise there could be problems with hashtags like #test and #test2 // Because of this we are sorting from the longest to the shortest tag. - usort($rawtags, function($a, $b) { + usort($tags, function($a, $b) { return strlen($b) <=> strlen($a); });