mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-20 12:54:12 +00:00
Check for app loading instead of daily count (#8856)
This commit is contained in:
parent
30437e158e
commit
b3f9fd09c6
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ habitrpg.controller('NotificationCtrl',
|
|||
if (!User.user.needsCron) return;
|
||||
var dailys = User.user.dailys;
|
||||
|
||||
if (!Boolean(dailys) || dailys.length === 0) return;
|
||||
if (!$rootScope.appLoaded) return;
|
||||
|
||||
isRunningYesterdailies = true;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue