Commit 165183b1 authored by Mark Harding's avatar Mark Harding

(chore): if no query then do not do a query

parent 69ef5d61
No related merge requests found
Pipeline #65725817 (#749) passed with stages
in 7 minutes and 37 seconds
......@@ -91,7 +91,7 @@ class Manager
'filter_hashtags' => false,
], $opts);
if (isset($opts['query'])) {
if (isset($opts['query']) && $opts['query']) {
$opts['query'] = str_replace('#', '', strtolower($opts['query']));
}
......
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