diff --git a/retootbot.py b/retootbot.py index ca0a110..b9530fb 100644 --- a/retootbot.py +++ b/retootbot.py @@ -9,8 +9,9 @@ import time class RetootBot(object): - def __init__(self, config): + def __init__(self, config, filter): self.config = config + self.filter = filter self.register() self.login() @@ -54,7 +55,8 @@ class RetootBot(object): retoots = [] for notification in self.m.notifications(): if (notification['type'] == 'mention' - and notification['status']['id'] not in self.seen_toots): + and notification['status']['id'] not in self.seen_toots + and self.filter.check_string(notification['status']['content'])): print('Boosting toot %d from %s: %s' % ( notification['status']['id'], notification['status']['account']['acct'], diff --git a/ticketfrei.py b/ticketfrei.py index 5319b78..b0d7a8f 100644 --- a/ticketfrei.py +++ b/ticketfrei.py @@ -13,7 +13,7 @@ if __name__ == '__main__': trigger = Trigger(config) - mbot = RetootBot(config) + mbot = RetootBot(config, trigger) tbot = RetweetBot(trigger) try: