inverted if() in RealtimePlugin check for tag
This commit is contained in:
parent
915dd9c9b5
commit
06f19d523a
@ -475,7 +475,7 @@ class RealtimePlugin extends Plugin
|
||||
break;
|
||||
case 'tag':
|
||||
$tag = $action->trimmed('tag');
|
||||
if (empty($tag)) {
|
||||
if (!empty($tag)) {
|
||||
$arg1 = $tag;
|
||||
} else {
|
||||
$this->log(LOG_NOTICE, "Unexpected 'tag' action without tag argument");
|
||||
|
Loading…
Reference in New Issue
Block a user