Increase connection timeouts when the PC is presumed to be online

This commit is contained in:
Cameron Gutman
2022-11-09 20:22:07 -06:00
parent 57f55e6856
commit 392e3c7fe3
4 changed files with 54 additions and 55 deletions

View File

@@ -416,7 +416,7 @@ public class PcView extends Activity implements AdapterFragmentCallbacks {
PairingManager pm = httpConn.getPairingManager();
PairState pairState = pm.pair(httpConn.getServerInfo(), pinStr);
PairState pairState = pm.pair(httpConn.getServerInfo(true), pinStr);
if (pairState == PairState.PIN_WRONG) {
message = getResources().getString(R.string.pair_incorrect_pin);
}