From f473697fb24c925fb02fe915fef8abcfb4382d9f Mon Sep 17 00:00:00 2001 From: Jon Kazama Date: Sun, 14 Jun 2026 10:30:08 +0200 Subject: [PATCH] fix(backup): Papierkorb (trash) auch im Backup-Reminder-Export, konsistent zum Settings-Export --- src/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/app.js b/src/js/app.js index 0f66a56..ca578e2 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -117,7 +117,7 @@ async function checkBackupReminder() { const notesData = (widgetData && Array.isArray(widgetData.notes)) ? widgetData.notes : []; const calcHistory = (widgetData && widgetData.calculator) ? widgetData.calculator.history || [] : []; const timerPresets = (widgetData && widgetData.timer) ? widgetData.timer.presets || [] : []; - const data = { version: '2.2.0', exported: new Date().toISOString(), boards, settings, notes: notesData, calculator: calcHistory, timerPresets }; + const data = { version: '2.2.0', exported: new Date().toISOString(), boards, settings, trash, notes: notesData, calculator: calcHistory, timerPresets }; const blob = new Blob([JSON.stringify(data, null, 2)], { type: 'application/json' }); const url = URL.createObjectURL(blob); const a = document.createElement('a');