Skip to content

Commit fda0929

Browse files
committed
fix: reduce base explorer timer
Made it check for new bases less frequently (10sec -> 60sec), as the old time was for testing only.
1 parent 7955874 commit fda0929

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export default class ThumbnailPlugin extends Plugin {
104104
console.debug("Automatically looking for bases...");
105105
await getBases(this);
106106
})().catch(e => console.error("Thumbnails -", e));
107-
}, 10 * 1000));
107+
}, 60 * 1000));
108108
}
109109

110110
onunload() {

0 commit comments

Comments
 (0)