Skip to content

Commit

Permalink
newIntent() only moved a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrvarz committed Mar 11, 2023
1 parent 4cbdb5d commit a9e0d90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/timur/webcall/callee/WebCallCalleeActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -1571,16 +1571,16 @@ private void newIntent(Intent intent, String comment) {
int idxCallee = path.indexOf("/callee/");
if(idxCallee>=0) {
if(path.endsWith("/callee/") || path.substring(idxCallee+8).indexOf("/")<0) {
// do NOT waitForBrowser()
// do NOT waitForBrowser() (only bring activity to front)
Log.d(TAG, "newIntent no render path="+path);
} else {
Log.d(TAG, "newIntent render path="+path);
waitForBrowser(uri,0);
return;
}
} else {
Log.d(TAG, "# newIntent uri="+uri+" not processed ("+comment+")");
}

Log.d(TAG, "newIntent dialId uri="+uri+" not processed ("+comment+")");
return;
}

Expand Down

0 comments on commit a9e0d90

Please sign in to comment.