forked from ticketfrei/ticketfrei
create initial seen_tweets entry
This commit is contained in:
parent
1293861b0a
commit
7af7c2a18d
2
user.py
2
user.py
|
|
@ -286,6 +286,8 @@ schlitz
|
||||||
user_id, client_id, client_secret
|
user_id, client_id, client_secret
|
||||||
) VALUES(?, ?, ?);""",
|
) VALUES(?, ?, ?);""",
|
||||||
(self.uid, access_token, access_token_secret))
|
(self.uid, access_token, access_token_secret))
|
||||||
|
db.execute("""INSERT INTO seen_tweets(user_id, tweet_id) VALUES (?, ?);""",
|
||||||
|
(self.uid, 0))
|
||||||
db.commit()
|
db.commit()
|
||||||
|
|
||||||
def get_twitter_token(self):
|
def get_twitter_token(self):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue