This commit is contained in:
2026-06-04 21:01:34 +02:00
parent f36c10b428
commit 5b193bc001

View File

@@ -4340,6 +4340,8 @@ window.cancelAnimFrame = (function () {
// Append all new items // Append all new items
newItems.forEach(item => currentPosts.appendChild(item)); newItems.forEach(item => currentPosts.appendChild(item));
// Apply blur to any notif thumbs in the new batch
if (ctx.notif && window.applyNotifThumbBlur) window.applyNotifThumbBlur(currentPosts);
// Track loaded page // Track loaded page
infiniteState.loadedPages.add(data.currentPage); infiniteState.loadedPages.add(data.currentPage);
@@ -4441,6 +4443,9 @@ window.cancelAnimFrame = (function () {
postsContainer.insertBefore(fragment, postsContainer.firstChild); postsContainer.insertBefore(fragment, postsContainer.firstChild);
// Apply blur to any notif thumbs in the new batch
if (ctx.notif && window.applyNotifThumbBlur) window.applyNotifThumbBlur(postsContainer);
// Track loaded page // Track loaded page
infiniteState.loadedPages.add(prevPage); infiniteState.loadedPages.add(prevPage);
window.updateVisitIndicators(); window.updateVisitIndicators();