Fix for certain types of comments

This commit is contained in:
Simon 2018-08-10 10:41:18 -04:00
parent 1ddf310257
commit e62b281470

6
run.py
View File

@ -23,7 +23,11 @@ def process_comment(comment, bot):
except ValueError:
return
if len(lines) > 1:
text = lines[1]
if lines[1] == "https://www.reddit.com/u/opendirectories-bot" and len(lines) > 2:
text = lines[2]
else:
text = lines[1]
if text.startswith("?"):
process_query(comment, bot, text[1:])
else: