fix public tournament chat not available

This commit is contained in:
Niklas Fiekas 2019-05-04 23:42:39 +02:00
parent 3a45e0d0b4
commit 7b0c87c980

View file

@ -77,7 +77,7 @@ object Tournament extends LilaController {
private[controllers] def canHaveChat(tour: Tour, json: Option[JsObject])(implicit ctx: Context): Boolean = private[controllers] def canHaveChat(tour: Tour, json: Option[JsObject])(implicit ctx: Context): Boolean =
!ctx.kid && // no public chats for kids !ctx.kid && // no public chats for kids
ctx.me.fold(!tour.isPrivate) { u => // anon can see public chats, except for private tournaments ctx.me.fold(!tour.isPrivate) { u => // anon can see public chats, except for private tournaments
(tour.isPrivate && json.fold(true)(jsonHasMe)) && // private tournament that I joined (!tour.isPrivate || json.fold(true)(jsonHasMe)) && // private tournament that I joined
Env.chat.panic.allowed(u, tighter = tour.variant == chess.variant.Antichess) Env.chat.panic.allowed(u, tighter = tour.variant == chess.variant.Antichess)
} }