hopefully fix clumping

This commit is contained in:
hippoz 2020-12-05 23:23:50 +02:00
parent f6e35fd043
commit 9b3ef21537
2 changed files with 3 additions and 3 deletions

View file

@ -269,7 +269,7 @@ const app = new Vue({
return true;
}
}
if (lastMessage.author._id === messageObject.author.id) return true;
if (lastMessage.author._id === messageObject.author._id) return true;
},
processMessage: async function(messageObject) {
if (!this.messages[messageObject.category._id]) this.$set(this.messages, messageObject.category._id, []);

View file

@ -1,7 +1,7 @@
const Client = require('./index');
const LISTEN_ON = '5fc829314e96e00725c17fd8';
const TOKEN = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6InVzZXIiLCJpYXQiOjE2MDcxOTE5NjAsImV4cCI6MTYwNzIwMjc2MH0.dfI6CMeDNck-ubqwEmiMFdHbRR4iiuooeTuzgVc_8rY';
const LISTEN_ON = '5fcbf598b39160080e797ad6';
const TOKEN = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IlNTQm90IiwiaWF0IjoxNjA3MjAyMjUxLCJleHAiOjE2MDcyMTMwNTF9.V9dL3cTe37M5-QDftK4XQwLMnPKoUcaGqL_YVstGTYo';
const PREFIX = '::';
const ADMIN_ID = '5fc828ea4e96e00725c17fd7';