fix: remove redundant await in CanvasManager

This commit is contained in:
Peter Steinberger
2025-12-22 18:53:14 +01:00
parent 3ce5b9b0d9
commit c872f37aae

View File

@@ -144,7 +144,7 @@ final class CanvasManager {
guard let self else { return }
let stream = await GatewayConnection.shared.subscribe(bufferingNewest: 1)
for await push in stream {
await self.handleGatewayPush(push)
self.handleGatewayPush(push)
}
}
}