This commit is contained in:
kuaifan 2022-05-25 16:27:36 +08:00
parent dc8e5a370f
commit 6732cca479
5 changed files with 5 additions and 5 deletions

2
public/js/app.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
802c879b0cf4860b
5464b087240b2891

View File

@ -463,7 +463,7 @@ export default {
if (user.userid === this.userId) {
return false;
}
if (this.contactsData.findIndex(item => item.userid = user.userid) === -1) {
if (this.contactsData.findIndex(item => item.userid == user.userid) === -1) {
this.contactsData.push(user)
}
});