fix thread.js not passing 'since' correctly to post updates api
This commit is contained in:
parent
57a6810b03
commit
3c3837b3f2
@ -31,7 +31,6 @@ def thread(slug):
|
|||||||
("thread_id", "=", thread.id),
|
("thread_id", "=", thread.id),
|
||||||
("id", "<=", after_id),
|
("id", "<=", after_id),
|
||||||
])
|
])
|
||||||
print(post_position)
|
|
||||||
page = math.ceil((post_position) / POSTS_PER_PAGE)
|
page = math.ceil((post_position) / POSTS_PER_PAGE)
|
||||||
else:
|
else:
|
||||||
page = max(1, min(page_count, int(request.args.get("page", default = 1))))
|
page = max(1, min(page_count, int(request.args.get("page", default = 1))))
|
||||||
|
@ -64,7 +64,7 @@
|
|||||||
|
|
||||||
function tryFetchUpdate() {
|
function tryFetchUpdate() {
|
||||||
if (!threadEndpoint) return;
|
if (!threadEndpoint) return;
|
||||||
const body = JSON.stringify({since: now});
|
const body = JSON.stringify({'since': now});
|
||||||
fetch(threadEndpoint, {method: "POST", headers: {"Content-Type": "application/json"}, body: body})
|
fetch(threadEndpoint, {method: "POST", headers: {"Content-Type": "application/json"}, body: body})
|
||||||
.then(res => res.json())
|
.then(res => res.json())
|
||||||
.then(json => {
|
.then(json => {
|
||||||
|
Loading…
Reference in New Issue
Block a user