fix: remove redundant await in CanvasManager
This commit is contained in:
parent
3ce5b9b0d9
commit
c872f37aae
@ -144,7 +144,7 @@ final class CanvasManager {
|
|||||||
guard let self else { return }
|
guard let self else { return }
|
||||||
let stream = await GatewayConnection.shared.subscribe(bufferingNewest: 1)
|
let stream = await GatewayConnection.shared.subscribe(bufferingNewest: 1)
|
||||||
for await push in stream {
|
for await push in stream {
|
||||||
await self.handleGatewayPush(push)
|
self.handleGatewayPush(push)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user