瀏覽代碼

Fix Admin and Invite links never showing on Reader nav

consistent-reader-nav
Matt Baer 2 月之前
父節點
當前提交
e34a58d0ef
共有 1 個文件被更改,包括 3 次插入5 次删除
  1. +3
    -5
      read.go

+ 3
- 5
read.go 查看文件

@@ -229,11 +229,9 @@ func showLocalTimeline(app *App, w http.ResponseWriter, r *http.Request, page in
TotalPages: ttlPages,
SelTopic: tag,
}
if app.cfg.App.Chorus {
u := getUserSession(app, r)
d.IsAdmin = u != nil && u.IsAdmin()
d.CanInvite = canUserInvite(app.cfg, d.IsAdmin)
}
u := getUserSession(app, r)
d.IsAdmin = u != nil && u.IsAdmin()
d.CanInvite = canUserInvite(app.cfg, d.IsAdmin)
c, err := getReaderSection(app)
if err != nil {
return err


Loading…
取消
儲存