higher query limits for chats and channels

This commit is contained in:
ThatOneCalculator 2022-11-04 15:25:31 -07:00
parent f369b0cf64
commit 174fa3f563
2 changed files with 5 additions and 5 deletions

View file

@ -58,18 +58,18 @@ const tabs = ['featured', 'following', 'owned'];
let tab = $ref(tabs[0]);
watch($$(tab), () => (syncSlide(tabs.indexOf(tab))));
const featuredPagination = {
endpoint: 'channels/featured' as const,
noPaging: true,
limit: 10,
noPaging: false,
};
const followingPagination = {
endpoint: 'channels/followed' as const,
limit: 5,
limit: 10,
};
const ownedPagination = {
endpoint: 'channels/owned' as const,
limit: 5,
limit: 10,
};
function create() {

View file

@ -142,7 +142,7 @@ onMounted(() => {
connection.on('message', onMessage);
connection.on('read', onRead);
os.api('messaging/history', { group: false }).then(userMessages => {
os.api('messaging/history', { group: false, limit: 100 }).then(userMessages => {
os.api('messaging/history', { group: true }).then(groupMessages => {
const _messages = userMessages.concat(groupMessages);
_messages.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());