From 8773a0433ceb9facf26e41f066ed84cd7e68f300 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Wed, 11 Mar 2026 12:22:14 +0000 Subject: [PATCH] Dynaview: Fix RSOE with Update address bar while scrolling See https://talk.tiddlywiki.org/t/your-help-is-needed-to-test-v5-4-0/14945/52 --- plugins/tiddlywiki/dynaview/dynaview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tiddlywiki/dynaview/dynaview.js b/plugins/tiddlywiki/dynaview/dynaview.js index 2f8af31f5..af501cd61 100644 --- a/plugins/tiddlywiki/dynaview/dynaview.js +++ b/plugins/tiddlywiki/dynaview/dynaview.js @@ -155,7 +155,7 @@ function updateAddressBar() { var top = findTopmostTiddler(); if(top.element) { var hash = "#" + encodeURIComponent(top.title) + ":" + encodeURIComponent("[list[$:/StoryList]]"); - if(title && $tw.locationHash !== hash) { + if(top.title && $tw.locationHash !== hash) { $tw.locationHash = hash; window.location.hash = hash; }