Skip to content

Commit

Permalink
Should be less than expires_in --autopull
Browse files Browse the repository at this point in the history
  • Loading branch information
quartata committed May 7, 2018
1 parent 34a9faf commit 8b43af0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatcommunicate.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def on_msg(msg, client):
and is_privileged(message.owner, message.room) and datahandling.last_feedbacked:
ids, expires_in = datahandling.last_feedbacked

if expires_in < time.time():
if time.time() < expires_in:
Tasks.do(metasmoke.Metasmoke.post_auto_comment, message.content_source, message.owner, ids=ids)


Expand Down

0 comments on commit 8b43af0

Please sign in to comment.