Skip to content
Snippets Groups Projects
Commit 042b28e7 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

call: handle TRYING in call state string

Change-Id: I4d94400386f94e9a3183f6b770c77eefcfba846e
parent fce23741
No related branches found
No related tags found
No related merge requests found
......@@ -268,6 +268,7 @@ Call::getStateStr() const
switch (getState()) {
case CallState::ACTIVE:
switch (getConnectionState()) {
case ConnectionState::TRYING:
case ConnectionState::PROGRESSING:
return StateEvent::CONNECTING;
......@@ -295,6 +296,7 @@ Call::getStateStr() const
case CallState::INACTIVE:
switch (getConnectionState()) {
case ConnectionState::TRYING:
case ConnectionState::PROGRESSING:
return StateEvent::CONNECTING;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment