possibly fix clumping again?
This commit is contained in:
parent
9b3ef21537
commit
f0e6051fbe
2 changed files with 7 additions and 5 deletions
|
@ -267,6 +267,8 @@ const app = new Vue({
|
||||||
if (lastMessage.author._id === messageObject.author._id) {
|
if (lastMessage.author._id === messageObject.author._id) {
|
||||||
if (lastMessage.nickAuthor && messageObject.nickAuthor && lastMessage.nickAuthor.username === messageObject.nickAuthor.username) {
|
if (lastMessage.nickAuthor && messageObject.nickAuthor && lastMessage.nickAuthor.username === messageObject.nickAuthor.username) {
|
||||||
return true;
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (lastMessage.author._id === messageObject.author._id) return true;
|
if (lastMessage.author._id === messageObject.author._id) return true;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
ports: {
|
ports: {
|
||||||
mainServerPort: 3000,
|
mainServerPort: 3005,
|
||||||
},
|
},
|
||||||
address: 'localhost',
|
address: 'b.hippoz.xyz',
|
||||||
mongoUrl: 'mongodb://192.168.0.105:27017/app',
|
mongoUrl: 'mongodb://192.168.0.105:27017/app',
|
||||||
bcryptRounds: 10,
|
bcryptRounds: 10,
|
||||||
roleMap: {
|
roleMap: {
|
||||||
|
|
Reference in a new issue