Skip to content
Snippets Groups Projects
Commit 46177d97 authored by Hadrien De Sousa's avatar Hadrien De Sousa Committed by Adrien Béraud
Browse files

fix: fix a crash when placing a SIP call

The app crashed when placing a SIP call because ther was a wrong
check on account username

Change-Id: Ie9c1a2d83975150c5315bb4cba06e0b8836d7c92
parent fb1c292a
No related branches found
No related tags found
No related merge requests found
......@@ -333,7 +333,7 @@ public class CallPresenter extends RootPresenter<CallView> implements Observer<S
}
String[] split = mSipCall.getNumber().split(":");
if (split.length > 0) {
if (split.length > 1) {
mBlockchainInputHandler.enqueueNextLookup(split[1]);
}
}
......
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