fix submitter updating (2)

This commit is contained in:
Emanuel Schütze 2019-02-13 12:59:25 +01:00
parent 7952a9165d
commit fda5e08f9a
1 changed files with 1 additions and 1 deletions

View File

@ -481,7 +481,7 @@ export class ViewMotion extends BaseAgendaViewModel implements Searchable {
* @param update potentially the changed agenda Item. Needs manual verification
*/
public updateUser(update: ViewUser): void {
if (this.motion.submitters && this.motion.submitters.findIndex(user => user.user_id === update.id)) {
if (this.motion.submitters && this.motion.submitters.find(user => user.user_id === update.id)) {
const userIndex = this.submitters.findIndex(user => user.id === update.id);
this.submitters[userIndex] = update;
}