This commit is contained in:
@@ -95,10 +95,6 @@ async def get_my_followed(_, info):
|
||||
with local_session() as session:
|
||||
author = session.query(Author).filter(Author.user == user_id).first()
|
||||
if author:
|
||||
# update author's last_seen timestamp
|
||||
author.last_seen = time.time()
|
||||
session.add(author)
|
||||
|
||||
authors_query = (
|
||||
select(Author)
|
||||
.join(AuthorFollower, AuthorFollower.follower == Author.id)
|
||||
|
Reference in New Issue
Block a user