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;
|
break;
|
||||||
case 'tag':
|
case 'tag':
|
||||||
$tag = $action->trimmed('tag');
|
$tag = $action->trimmed('tag');
|
||||||
if (empty($tag)) {
|
if (!empty($tag)) {
|
||||||
$arg1 = $tag;
|
$arg1 = $tag;
|
||||||
} else {
|
} else {
|
||||||
$this->log(LOG_NOTICE, "Unexpected 'tag' action without tag argument");
|
$this->log(LOG_NOTICE, "Unexpected 'tag' action without tag argument");
|
||||||
|
Loading…
Reference in New Issue
Block a user