适配memos

This commit is contained in:
DelLevin-Home
2026-05-14 14:30:41 +08:00
parent 6b1c37f5e6
commit 27bebe04db
2 changed files with 6 additions and 6 deletions

View File

@@ -116,7 +116,7 @@
// 构建 API 请求 URL确保 pageToken 不为 null 时才添加
const url = new URL(MEMOS_API_BASE);
url.searchParams.set("pageSize", PAGE_SIZE.toString());
url.searchParams.set("orderBy", "display_time desc");
url.searchParams.set("orderBy", "create_time desc");
if (nextPageToken) {
url.searchParams.set("pageToken", nextPageToken);
}