Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
onuratakan committed Aug 2, 2023
1 parent 6e63625 commit fd79bba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/address_ping_system/address_ping_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def run(self):
if data != []:
for each in data:
if ping_db.get(each["fromUser"]) != True and ping_db.get_count() < max_user():
self.integration.send("reply", "hello", each["fromUser"])
ping_db.set(each["fromUser"], True)
self.integration.send("reply", "hello", each["fromUser"])
time.sleep(5)

def close(self):
Expand Down

0 comments on commit fd79bba

Please sign in to comment.