Format new logic

This commit is contained in:
0x24d 2021-11-20 13:08:42 +00:00
parent b16af0da3c
commit 1e925e97d8

View file

@ -98,7 +98,7 @@ def get_channel_videos_response(ucid, page = 1, auto_generated = nil, sort_by =
id: ucid,
page: i,
sort_by: sort_by,
continuation: continuation
continuation: continuation,
})
PG_DB.exec("INSERT INTO channel_continuations VALUES ($1, $2, $3, $4) \
ON CONFLICT (id, page, sort_by) DO UPDATE SET continuation = $4", *channel_continuation.to_tuple)
@ -122,7 +122,7 @@ def get_channel_videos_response(ucid, page = 1, auto_generated = nil, sort_by =
id: ucid,
page: page + 1,
sort_by: sort_by,
continuation: continuation
continuation: continuation,
})
PG_DB.exec("INSERT INTO channel_continuations VALUES ($1, $2, $3, $4) \
ON CONFLICT (id, page, sort_by) DO UPDATE SET continuation = $4", *channel_continuation.to_tuple)