Workaround to make quote.py return the "quote added" message as a notice (this plugin is kinda shit, I should rewrite it, maybe with fulltext search like todo? :3)w
This commit is contained in:
parent
ae9d3cdd30
commit
a02849d791
1 changed files with 2 additions and 1 deletions
|
@ -134,7 +134,8 @@ def quote(inp, nick='', chan='', db=None, notice=None):
|
|||
|
||||
if add:
|
||||
quoted_nick, msg = add.groups()
|
||||
return add_quote(db, chan, quoted_nick, nick, msg)
|
||||
notice(add_quote(db, chan, quoted_nick, nick, msg))
|
||||
return
|
||||
elif retrieve:
|
||||
select, num = retrieve.groups()
|
||||
by_chan = True if select.startswith('#') else False
|
||||
|
|
Reference in a new issue