mirror of
https://git.freesoftwareextremist.com/bloat
synced 2024-11-12 17:44:10 +00:00
Fix merge
This commit is contained in:
parent
4ab53547a8
commit
ecb19c8746
2 changed files with 3 additions and 4 deletions
|
@ -322,12 +322,11 @@ func (s *service) ThreadPage(c *client, id string, reply bool) (err error) {
|
|||
}
|
||||
|
||||
func (svc *service) StatusPopup(c *client, id string) (err error) {
|
||||
status, err := c.GetStatus(ctx, id)
|
||||
status, err := c.GetStatus(c.ctx, id)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
rCtx := getRendererContext(c)
|
||||
return svc.renderer.Render(rCtx, c, renderer.StatusPopup, status)
|
||||
return svc.renderer.Render(c.rctx, c.w, renderer.StatusPopup, status)
|
||||
}
|
||||
|
||||
func (s *service) LikedByPage(c *client, id string) (err error) {
|
||||
|
|
|
@ -630,7 +630,7 @@ func NewHandler(s *service, logger *log.Logger, staticDir string) http.Handler {
|
|||
}, CSRF, JSON)
|
||||
|
||||
fStatus := handle(func(c *client) error {
|
||||
id, _ := mux.Vars(c.Req)["id"]
|
||||
id, _ := mux.Vars(c.r)["id"]
|
||||
return s.StatusPopup(c, id)
|
||||
}, SESSION, JSON)
|
||||
|
||||
|
|
Loading…
Reference in a new issue