android: Show confirmation dialog also when connecting

This commit is contained in:
Tobias Brunner 2016-05-02 18:19:26 +02:00
parent 6e398a81f2
commit 44c8580ebe

View File

@ -230,7 +230,7 @@ public class MainActivity extends AppCompatActivity implements OnVpnProfileSelec
removeFragmentByTag(DIALOG_TAG);
if (mService != null && mService.getState() == State.CONNECTED)
if (mService != null && (mService.getState() == State.CONNECTED || mService.getState() == State.CONNECTING))
{
profileInfo.putBoolean(PROFILE_RECONNECT, mService.getProfile().getId() == profile.getId());