Commit 06a64219 authored by Aryan Kothari's avatar Aryan Kothari
Browse files

fix: bool eval order

parent 2c4bc7a2
......@@ -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;
};
......
......@@ -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) => {
......
......@@ -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'));
}
......
......@@ -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'));
};
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment