diff options
Diffstat (limited to 'plugin.py')
| -rw-r--r-- | plugin.py | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -212,13 +212,15 @@ class SnoParser(callbacks.Plugin): Queries the cache for an address. """ - data = self.redis_clients['whois'].get(sourceip) - decoded_data = data.decode("utf-8") + data = self.redis_clients['whois'].get(ipaddress) + if data is not None: + data = data.decode("utf-8") ttl = self.redis_clients['whois'].ttl(ipaddress) count = self.redis_clients['ips'].get(ipaddress) - decoded_count = count.decode("utf-8") + if count is not None: + count = count.decode("utf-8") print("SnoParser manual query: ", data, " ", ttl) - irc.reply(f"{decoded_data} - Count: {decoded_count} - Remaining: {ttl}s") + irc.reply(f"{data} - Count: {count} - Remaining: {ttl}s") ipquery = wrap(ipquery, ["ip"]) |
