Skip to content

Commit

Permalink
Slows down markdown updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lynchjames committed Nov 4, 2020
1 parent 4c27458 commit 85e841a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class DayPlanner extends Plugin {
window.setInterval(async () => await this.refreshStatusBar(), 2000));

this.registerInterval(
window.setInterval(async () => this.updateDayPlannerMarkdown(await this.parseDayPlanner()), 1000));
window.setInterval(async () => this.updateDayPlannerMarkdown(await this.parseDayPlanner()), 30000));

this.refreshStatusBar();
this.updateDayPlannerMarkdown(await this.parseDayPlanner());
Expand Down

0 comments on commit 85e841a

Please sign in to comment.