|
|
|
@ -214,11 +214,12 @@ CREATE TABLE IF NOT EXISTS follow_cache (
|
|
|
|
|
timestamp = status['created_at'] |
|
|
|
|
visibility = status['visibility'] |
|
|
|
|
|
|
|
|
|
# Welcome any user who's posted publicly |
|
|
|
|
# Follow any user who's posted publicly |
|
|
|
|
if visibility == 'public' and federated \ |
|
|
|
|
and instance not in self.bot_config['follow']['blacklist']['instances'] \ |
|
|
|
|
and username not in self.bot_config['follow']['blacklist']['users'] \ |
|
|
|
|
and '#nobot' not in status['account']['note'].lower(): |
|
|
|
|
and 'nobot' not in status['account']['note'].lower(): |
|
|
|
|
# ABOVE CONDITIONAL WARNING: depending on how the formatted bio looks, #nobot may not match!!!!! |
|
|
|
|
|
|
|
|
|
# Deal with tag processing |
|
|
|
|
tags_ok = True # Default to tag's ok (assumes tags are not defined in config) |
|
|
|
|