From 149d649a6cede1936a205bd16004eca1593b3c5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Thu, 5 Feb 2026 14:01:33 -0500 Subject: [PATCH] fix: dont update teaser for public chats --- public/src/client/chats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/client/chats.js b/public/src/client/chats.js index 338ba78c55..a4a4ed7288 100644 --- a/public/src/client/chats.js +++ b/public/src/client/chats.js @@ -664,7 +664,7 @@ define('forum/chats', [ }; Chats.updateTeaser = async function (roomId, teaser) { - if (!ajaxify.data.template.chats || !app.user.userslug) { + if (!ajaxify.data.template.chats || ajaxify.data.public || !app.user.userslug) { return; }