We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb2d179 commit e191779Copy full SHA for e191779
src/main/scala/actor/RoomActor.scala
@@ -47,15 +47,10 @@ object RoomActor:
47
None -> None
48
49
case ClientIn.VersionedBatch(msgs) =>
50
- if deps.req.isLichessMobile // BC, remove this in a month
51
- then
52
- msgs.toList.reverse.foreach: msg =>
53
- deps.clientIn(versionFor(state.isTroll, msg))
54
- else
55
- deps.clientIn:
56
- ClientIn.PayloadBatch:
57
- msgs.toList.reverse.map: msg =>
58
- versionFor(state.isTroll, msg).json
+ deps.clientIn:
+ ClientIn.PayloadBatch:
+ msgs.toList.reverse.map: msg =>
+ versionFor(state.isTroll, msg).json
59
60
61
case ClientIn.OnlyFor(endpoint, payload) =>
0 commit comments