Seen: Don't internalize IrcString.

It's a bug, and it would mess case-insensitive comparison anyway.
This commit is contained in:
Valentin Lorentz 2020-05-22 08:36:52 +02:00
parent ac4ca4950d
commit dde35a844d
1 changed files with 0 additions and 1 deletions

View File

@ -65,7 +65,6 @@ class SeenDB(plugins.ChannelUserDB):
def update(self, channel, nickOrId, saying):
seen = time.time()
channel = sys.intern(channel)
self[channel, nickOrId] = (seen, saying)
self[channel, '<last>'] = (seen, saying)