From dfc5e9e6e5bb1580eaf12bd54b251b4d0aa0662a Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Mon, 29 Dec 2025 21:01:38 +0000 Subject: [PATCH] Initial Commit --- plugins/tiddlywiki/browser-storage/settings.tid | 2 +- plugins/tiddlywiki/browser-storage/startup.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/tiddlywiki/browser-storage/settings.tid b/plugins/tiddlywiki/browser-storage/settings.tid index e6170dfb9..daffac91e 100644 --- a/plugins/tiddlywiki/browser-storage/settings.tid +++ b/plugins/tiddlywiki/browser-storage/settings.tid @@ -34,7 +34,7 @@ This setting allows a custom alert message to be displayed when an attempt to st ! Prevent browser from evicting local storage -Permission for local storage persistence: ''{{$:/info/browser/storage/persisted}}'' +Permission for local storage persistence: ''{{$:/state/browser/storage/persisted}}'' The first time a tiddler is saved to local storage a request will be made to prevent automatic eviction of local storage for this site. This means the data will not be cleared unless the user manually clears it. diff --git a/plugins/tiddlywiki/browser-storage/startup.js b/plugins/tiddlywiki/browser-storage/startup.js index 9ab61620d..eecd9ca8d 100644 --- a/plugins/tiddlywiki/browser-storage/startup.js +++ b/plugins/tiddlywiki/browser-storage/startup.js @@ -17,7 +17,7 @@ exports.synchronous = true; var ENABLED_TITLE = "$:/config/BrowserStorage/Enabled", SAVE_FILTER_TITLE = "$:/config/BrowserStorage/SaveFilter", - PERSISTED_STATE_TITLE = "$:/info/browser/storage/persisted"; + PERSISTED_STATE_TITLE = "$:/state/browser/storage/persisted"; var BrowserStorageUtil = require("$:/plugins/tiddlywiki/browser-storage/util.js").BrowserStorageUtil;