feeds database lookup via links column

This commit is contained in:
spla 2021-05-15 11:35:08 +02:00
pare c9219f1a85
commit 6f0c2a7678

Veure arxiu

@ -84,7 +84,7 @@ if __name__ == '__main__':
cur = conn.cursor() cur = conn.cursor()
cur.execute('select id from feeds where id=(%s)', (id,)) cur.execute('select link from feeds where link=(%s)', (link,))
row = cur.fetchone() row = cur.fetchone()
if row == None: if row == None: