dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit 4ac974ea0606e285ed57e81bdb479625718229cb
parent 8a524a3122d539b2a72d7ab055b0a8cfde196a97
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Sat, 16 Dec 2023 23:48:58 -0500

log errors

Diffstat:
Mpkg/web/handlers/poker/poker.go | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/pkg/web/handlers/poker/poker.go b/pkg/web/handlers/poker/poker.go @@ -1431,6 +1431,8 @@ func PokerUnSitHandler(c echo.Context) error { if err := g.UnSitPlayer(db, roomID, authUser); err == nil { PokerPubSub.Pub(roomTopic, PokerSeatLeftEvent{}) newLogEvent(g, roomLogsTopic, fmt.Sprintf("%s un-sit", authUser.Username.String())) + } else { + logrus.Error(err) } } return c.HTML(http.StatusOK, html)