feat(ios,p0): iOS P0 platform, audio fixes, channel UX

This commit is contained in:
Edison Jwa
2026-05-17 22:00:00 +09:00
parent a1fefc8ab6
commit 7a59f5b9a1
38 changed files with 1705 additions and 674 deletions
+1 -3
View File
@@ -102,9 +102,7 @@ impl From<chanora_core::CoreError> for BridgeError {
) => BridgeError::ServerRejected { code, message },
chanora_core::CoreError::Protocol(p) => BridgeError::Connection(format!("{p}")),
chanora_core::CoreError::Audio(a) => BridgeError::Connection(format!("audio: {a}")),
chanora_core::CoreError::Storage(s) => {
BridgeError::Connection(format!("storage: {s}"))
}
chanora_core::CoreError::Storage(s) => BridgeError::Connection(format!("storage: {s}")),
other => BridgeError::Unmapped(format!("{other}")),
}
}