mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-02 07:49:39 +00:00
remove unused param
This commit is contained in:
parent
e54dcd2859
commit
d9817be8f3
1 changed files with 2 additions and 2 deletions
|
|
@ -280,10 +280,10 @@ export default {
|
||||||
this.runYesterDailies();
|
this.runYesterDailies();
|
||||||
}, nextCronIn);
|
}, nextCronIn);
|
||||||
},
|
},
|
||||||
async runYesterDailies (forceRun = false) {
|
async runYesterDailies () {
|
||||||
// @TODO: Hopefully we don't need this even we load correctly
|
// @TODO: Hopefully we don't need this even we load correctly
|
||||||
if (this.isRunningYesterdailies) return;
|
if (this.isRunningYesterdailies) return;
|
||||||
if (!this.user.needsCron && !forceRun) {
|
if (!this.user.needsCron) {
|
||||||
this.handleUserNotifications(this.user.notifications);
|
this.handleUserNotifications(this.user.notifications);
|
||||||
this.scheduleNextCron();
|
this.scheduleNextCron();
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue