rewrite correction to use new history tracker
This commit is contained in:
parent
914bc255ab
commit
b9bf09e6b6
2 changed files with 25 additions and 25 deletions
|
@ -35,7 +35,7 @@ def track_history(input, message_time, bot):
|
|||
bot.history[input.chan] = deque(maxlen=1000)
|
||||
history = bot.history[input.chan]
|
||||
|
||||
data = (input.nick.lower(), message_time, input.msg)
|
||||
data = (input.nick, message_time, input.msg)
|
||||
history.append(data)
|
||||
|
||||
|
||||
|
|
Reference in a new issue