Commit 350aaa60 authored by Ryuto Sawada's avatar Ryuto Sawada Committed by Toshiya Ikenaga
Browse files

Shorten the sleep duration for LAUNCH BROWSER command

Currently ServiceHandler sleeps 10 seconds right after broadcasting an
intent to launch a browser application, but 10 seconds is too long and
ServiceHandler cannot handle next user operation if user comes back from
the browser application to the STK application quickly.
To fix the issue, shorten the sleep duration.

Bug: 29863555
Change-Id: Ia0e6af5bca42f174675df6dad51de91002f5e795
parent a409035d
......@@ -1527,7 +1527,7 @@ public class StkAppService extends Service implements Runnable {
// this is good for scenarios where a related DISPLAY TEXT command is
// followed immediately.
try {
Thread.sleep(10000);
Thread.sleep(3000);
} catch (InterruptedException e) {}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment