this repo has no description

MostLikedFeed: secondary sort on create_ts desc

+1 -1
+1 -1
feeds/mostliked.py
··· 11 11 select uri, create_ts, unixepoch('now', '-24 hours'), create_ts - unixepoch('now', '-24 hours'), likes 12 12 from posts 13 13 where create_ts >= unixepoch('now', '-24 hours') 14 - order by likes desc, uri asc 14 + order by likes desc, create_ts desc 15 15 limit :limit offset :offset 16 16 """ 17 17 DELETE_OLD_POSTS_QUERY = """