We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19d72f2 commit 7e02ec6Copy full SHA for 7e02ec6
1 file changed
src/main.ts
@@ -60,6 +60,13 @@ export default class ThumbnailPlugin extends Plugin {
60
})
61
62
this.addSettingTab(new SettingTab(this.app, this));
63
+
64
+ this.registerInterval(window.setInterval(() => {
65
+ (async () => {
66
+ console.debug("Automatically generating thumbnails...");
67
+ await getBases(this);
68
+ })().catch(e => console.error("Thumbnails -", e));
69
+ }, 1 * 60 * 1000));
70
}
71
72
onunload() {
0 commit comments