浏览代码

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


正在加载...
取消
保存