针对tg来源优化设置临时token后缀

This commit is contained in:
2021-12-18 21:17:01 +08:00
parent ff50857071
commit ef48070eeb
2 changed files with 13 additions and 2 deletions

View File

@@ -1257,7 +1257,7 @@ class SubFlow extends PureComponent {
.then((json) => {
if (page === 1 && json.data.length) {
// update latest_post_id
let max_id = LATEST_POST_ID || -1;
let max_id = window.LATEST_POST_ID || -1;
json.data.forEach((x) => {
if (parseInt(x.pid, 10) > max_id) max_id = parseInt(x.pid, 10);
});