We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 35e5875 + 12ba280 commit 1443ac2Copy full SHA for 1443ac2
mastodon-rss-bot.py
@@ -111,8 +111,8 @@ def determine_content_language(text):
111
print('Entry found: ' + feed_entry_id)
112
113
db.execute(
114
- 'SELECT * FROM entries WHERE feed_entry_id = ? AND rss_feed_url = ? and mastodon_username = ? and mastodon_instance = ?',
115
- (feed_entry_id, rss_feed_url, mastodon_username, mastodon_instance))
+ 'SELECT * FROM entries WHERE feed_entry_id = ? AND mastodon_username = ? AND mastodon_instance = ?',
+ (feed_entry_id, mastodon_username, mastodon_instance))
116
last = db.fetchone()
117
118
if 'published_parsed' in feed_entry:
0 commit comments