diff --git a/sources/angular/myapp/src/app/game/game.component.ts b/sources/angular/myapp/src/app/game/game.component.ts
index 9f8f8df0384b952774331e8b5dc707bf70bb9f33..961f774c95314f1e4ca4b385d15deda6043598d4 100644
--- a/sources/angular/myapp/src/app/game/game.component.ts
+++ b/sources/angular/myapp/src/app/game/game.component.ts
@@ -103,6 +103,7 @@ export class GameComponent implements OnInit {
                 this.startCountdown = this.countdown;
             } else if (this.stateGame === EnumStateGame.start && this.countdown === 0) {
                 this.stateGame = EnumStateGame.end;
+                this.updateUserStats();
             }
         });
     }