Skip to content
Snippets Groups Projects
Commit 184f923e authored by Sébastien Blin's avatar Sébastien Blin
Browse files

sip: fix online status

Change-Id: I961aa255deea24ae926163a4372f66c42c98baf4
parent 848b9c33
Branches
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ to_status(const std::string& type) ...@@ -71,7 +71,7 @@ to_status(const std::string& type)
return account::Status::UNREGISTERED; return account::Status::UNREGISTERED;
else if (type == "TRYING") else if (type == "TRYING")
return account::Status::TRYING; return account::Status::TRYING;
else if (type == "REGISTERED") else if (type == "REGISTERED" || type == "READY")
return account::Status::REGISTERED; return account::Status::REGISTERED;
else if (type == "ERROR_NEED_MIGRATION") else if (type == "ERROR_NEED_MIGRATION")
return account::Status::ERROR_NEED_MIGRATION; return account::Status::ERROR_NEED_MIGRATION;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment