This commit is contained in:
beo3000 2026-02-23 17:37:44 +01:00
parent 40574ba339
commit be29a138fc
2 changed files with 3 additions and 2 deletions

View File

@ -1 +1 @@
1.1.30
1.1.31

View File

@ -97,7 +97,8 @@
if (!date) return;
saveNote();
updateTopic(topic.id, { snoozeUntil: date, status: "snoozed", isNew: false });
processedTopicIds.add(topic.id);
// Do NOT add to processedTopicIds — snoozed topics are filtered out of openTopics
// by the status check; adding here would wrongly place them in "Bereits abgelegt heute"
showSnoozeDialog = false;
}