diff options
author | 2024-12-03 22:21:47 +0800 | |
---|---|---|
committer | 2024-12-03 15:21:47 +0100 | |
commit | 732b03a742c59d425fcfbb726ddf529c9d3417e2 (patch) | |
tree | 04821719ead1692a57910ac74a9b188990bcd011 /internal/web/thread.go | |
parent | [chore]: Bump codeberg.org/gruf/go-ffmpreg from 0.6.0 to 0.6.1 (#3591) (diff) | |
download | gotosocial-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.go | 2 |
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, ) } |