diff --git a/plugins/plugins/core/components/ChatPage.js b/plugins/plugins/core/components/ChatPage.js index 07bf667a..c28565a8 100644 --- a/plugins/plugins/core/components/ChatPage.js +++ b/plugins/plugins/core/components/ChatPage.js @@ -55,10 +55,10 @@ const parentEpml = new Epml({ type: 'WINDOW', source: window.parent }) export const queue = new RequestQueue(); -export const chatLimit = 20 -export const chatLimitHalf = 10 +export const chatLimit = 40 +export const chatLimitHalf = 20 -export const totalMsgCount = 60 +export const totalMsgCount = 120 class ChatPage extends LitElement { static get properties() { return { @@ -2205,6 +2205,10 @@ class ChatPage extends LitElement { findElement.classList.remove('blink-bg') }, 2000) } + const chatScrollerElement = this.shadowRoot.querySelector('chat-scroller'); + if (chatScrollerElement && chatScrollerElement.disableFetching) { + chatScrollerElement.disableFetching = false + } return }