Skip to content

Commit

Permalink
Get the list of folders every minute, not every 6 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-r-m committed Jan 23, 2022
1 parent bc550d0 commit b292349
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "joplin-plugin-quick-links",
"version": "1.2.2",
"version": "1.2.3",
"scripts": {
"dist": "webpack --joplin-plugin-config buildMain && webpack --joplin-plugin-config buildExtraScripts && webpack --joplin-plugin-config createArchive",
"prepare": "npm run dist",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import joplin from 'api';
import { ContentScriptType, SettingItemType } from 'api/types';

const NUM_RESULTS = 21;
const FOLDERS_REFRESH_INTERVAL = 6000;
const FOLDERS_REFRESH_INTERVAL = 60000;
const SETTING_SHOW_FOLDERS = 'showFolders';
const SETTING_ALLOW_NEW_NOTES = 'allowNewNotes';

Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 1,
"id": "com.whatever.quick-links",
"app_min_version": "1.8.1",
"version": "1.2.2",
"version": "1.2.3",
"name": "Quick Links",
"description": "Create links to other notes",
"author": "Roman Musin",
Expand Down

0 comments on commit b292349

Please sign in to comment.