Merge pull request #1274 from jhoneycutt/1263-desyncronized-nicklist

Issue #1263: Desynchronized nicklist
This commit is contained in:
Lorenz Hübschle 2024-02-04 13:11:01 +01:00 committed by GitHub
commit e20b9586dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ models.service('models', ['$rootScope', '$filter', 'bufferResume', function($roo
}
for (i in group.nicks) {
if (group.nicks[i].name == nick.name) {
delete group.nicks[i];
group.nicks.splice(i, 1);
break;
}
}