summaryrefslogtreecommitdiffstats
path: root/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugin.py')
-rw-r--r--plugin.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/plugin.py b/plugin.py
index e0f6771..de93e94 100644
--- a/plugin.py
+++ b/plugin.py
@@ -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"])