mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-02 04:00:36 +00:00
Added fix for multiple level up (#9330)
This commit is contained in:
parent
d4881cb73a
commit
0f92349902
1 changed files with 1 additions and 1 deletions
|
|
@ -412,7 +412,7 @@ export default {
|
|||
this.$store.dispatch('tasks:fetchUserTasks', {forceLoad: true}),
|
||||
]);
|
||||
|
||||
if (this.levelBeforeYesterdailies < this.user.stats.lvl) {
|
||||
if (this.levelBeforeYesterdailies > 0 && this.levelBeforeYesterdailies < this.user.stats.lvl) {
|
||||
this.showLevelUpNotifications(this.user.stats.lvl);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue