diff options
Diffstat (limited to '')
-rw-r--r-- | src/command/StickerCommands.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/command/StickerCommands.cxx b/src/command/StickerCommands.cxx index 07bed032e..fce53e162 100644 --- a/src/command/StickerCommands.cxx +++ b/src/command/StickerCommands.cxx @@ -155,6 +155,10 @@ handle_sticker_song(Client &client, ConstBuffer<const char *> args) if (strcmp(op_s, "=") == 0) op = StickerOperator::EQUALS; + else if (strcmp(op_s, "<") == 0) + op = StickerOperator::LESS_THAN; + else if (strcmp(op_s, ">") == 0) + op = StickerOperator::GREATER_THAN; else { command_error(client, ACK_ERROR_ARG, "bad operator"); |