瀏覽代碼

fix: bool eval order

Aryan Kothari 9 月之前
父節點
當前提交
06a64219bc

+ 4 - 4
src/lib/components/chat/Chat.svelte

@@ -421,7 +421,7 @@
 					files: chatFiles
 				});
 				await chats.set(
-					await getChatList(localStorage.token, 0, $pageSkip * $pageLimit || $pageLimit)
+					await getChatList(localStorage.token, 0, ($pageSkip * $pageLimit) || $pageLimit)
 				);
 			}
 		}
@@ -469,7 +469,7 @@
 					files: chatFiles
 				});
 				await chats.set(
-					await getChatList(localStorage.token, 0, $pageSkip * $pageLimit || $pageLimit)
+					await getChatList(localStorage.token, 0, ($pageSkip * $pageLimit) || $pageLimit)
 				);
 			}
 		}
@@ -631,7 +631,7 @@
 					timestamp: Date.now()
 				});
 				await chats.set(
-					await getChatList(localStorage.token, 0, $pageSkip * $pageLimit || $pageLimit)
+					await getChatList(localStorage.token, 0, ($pageSkip * $pageLimit) || $pageLimit)
 				);
 				await chatId.set(chat.id);
 			} else {
@@ -708,7 +708,7 @@
 			})
 		);
 
-		await chats.set(await getChatList(localStorage.token, 0, $pageSkip * $pageLimit || $pageLimit));
+		await chats.set(await getChatList(localStorage.token, 0, ($pageSkip * $pageLimit) || $pageLimit));
 
 		return _responses;
 	};

+ 1 - 1
src/lib/components/chat/Messages.svelte

@@ -90,7 +90,7 @@
 			history: history
 		});
 
-		await chats.set(await getChatList(localStorage.token, 0, $pageSkip * $pageLimit || $pageLimit));
+		await chats.set(await getChatList(localStorage.token, 0, ($pageSkip * $pageLimit) || $pageLimit));
 	};
 
 	const confirmEditResponseMessage = async (messageId, content) => {

+ 2 - 2
src/lib/components/chat/Tags.svelte

@@ -59,7 +59,7 @@
 				await pinnedChats.set(await getChatListByTagName(localStorage.token, 'pinned'));
 			} else {
 				await chats.set(
-					await getChatList(localStorage.token, 0, $pageSkip * $pageLimit || $pageLimit)
+					await getChatList(localStorage.token, 0, ($pageSkip * $pageLimit) || $pageLimit)
 				);
 			}
 
@@ -68,7 +68,7 @@
 			}
 		} else {
 			await chats.set(
-				await getChatList(localStorage.token, 0, $pageSkip * $pageLimit || $pageLimit)
+				await getChatList(localStorage.token, 0, ($pageSkip * $pageLimit) || $pageLimit)
 			);
 			await pinnedChats.set(await getChatListByTagName(localStorage.token, 'pinned'));
 		}

+ 3 - 3
src/lib/components/layout/Sidebar/ChatItem.svelte

@@ -49,7 +49,7 @@
 				title: _title
 			});
 			await chats.set(
-				await getChatList(localStorage.token, 0, $pageSkip * $pageLimit || $pageLimit)
+				await getChatList(localStorage.token, 0, ($pageSkip * $pageLimit) || $pageLimit)
 			);
 			await pinnedChats.set(await getChatListByTagName(localStorage.token, 'pinned'));
 		}
@@ -64,7 +64,7 @@
 		if (res) {
 			goto(`/c/${res.id}`);
 			await chats.set(
-				await getChatList(localStorage.token, 0, $pageSkip * $pageLimit || $pageLimit)
+				await getChatList(localStorage.token, 0, ($pageSkip * $pageLimit) || $pageLimit)
 			);
 			await pinnedChats.set(await getChatListByTagName(localStorage.token, 'pinned'));
 		}
@@ -72,7 +72,7 @@
 
 	const archiveChatHandler = async (id) => {
 		await archiveChatById(localStorage.token, id);
-		await chats.set(await getChatList(localStorage.token, 0, $pageSkip * $pageLimit || $pageLimit));
+		await chats.set(await getChatList(localStorage.token, 0, ($pageSkip * $pageLimit) || $pageLimit));
 		await pinnedChats.set(await getChatListByTagName(localStorage.token, 'pinned'));
 	};