summaryrefslogtreecommitdiff
path: root/internal/web/thread.go
diff options
context:
space:
mode:
authorLibravatar CDN <cardinal@codeword.info>2024-12-03 22:21:47 +0800
committerLibravatar GitHub <noreply@github.com>2024-12-03 15:21:47 +0100
commit732b03a742c59d425fcfbb726ddf529c9d3417e2 (patch)
tree04821719ead1692a57910ac74a9b188990bcd011 /internal/web/thread.go
parent[chore]: Bump codeberg.org/gruf/go-ffmpreg from 0.6.0 to 0.6.1 (#3591) (diff)
downloadgotosocial-732b03a742c59d425fcfbb726ddf529c9d3417e2.tar.xz
[bugfix] Load instance-wide custom css unconditionally in thread details page (#3595)
Diffstat (limited to 'internal/web/thread.go')
-rw-r--r--internal/web/thread.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/web/thread.go b/internal/web/thread.go
index 246c05b97..557e00381 100644
--- a/internal/web/thread.go
+++ b/internal/web/thread.go
@@ -124,6 +124,7 @@ func (m *Module) threadGETHandler(c *gin.Context) {
cssFA,
cssStatus,
cssThread,
+ instanceCustomCSSPath,
}...,
)
@@ -131,7 +132,6 @@ func (m *Module) threadGETHandler(c *gin.Context) {
if theme := targetAccount.Theme; theme != "" {
stylesheets = append(
stylesheets,
- instanceCustomCSSPath,
themesPathPrefix+"/"+theme,
)
}