1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-2692 App | Tech | Do not open space with chat by default

This commit is contained in:
Evgenii Kozlov 2025-01-15 17:00:42 +01:00
parent 775cd271d0
commit 87657b54d5

View file

@ -1954,7 +1954,7 @@ class Middleware @Inject constructor(
fun workspaceOpen(space: Id): Config {
val request = Rpc.Workspace.Open.Request(
spaceId = space,
withChat = true
withChat = false
)
logRequestIfDebug(request)
val (response, time) = measureTimedValue { service.workspaceOpen(request) }