Don't need user to see chat. Increased to fetch last 100 messages.

This commit is contained in:
2020-04-03 13:55:26 +02:00
parent 09648f0b2d
commit 706ef44491
2 changed files with 16 additions and 21 deletions

View File

@@ -82,7 +82,7 @@ export default {
};
},
created() {
getChatHistory().then(messages => (this.chatHistory = messages));
getChatHistory(0, 100).then(messages => (this.chatHistory = messages));
},
mounted() {
this.track();