Merge branch 'voip/fix-call-state' into 'main'

fix: Store the call state, fix the invite cannot be sent.

See merge request famedly/company/frontend/famedlysdk!924
This commit is contained in:
Krille Fear 2021-12-07 14:27:59 +00:00
commit 8f877b2039
1 changed files with 1 additions and 0 deletions

View File

@ -642,6 +642,7 @@ class CallSession {
}
void setCallState(CallState newState) {
state = newState;
_callStateController.add(newState);
fireCallEvent(CallEvent.kState);
}