diff options
Diffstat (limited to 'src/se/leap/openvpn/OpenVpnService.java')
| -rw-r--r-- | src/se/leap/openvpn/OpenVpnService.java | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/se/leap/openvpn/OpenVpnService.java b/src/se/leap/openvpn/OpenVpnService.java index 1ef291df..f363cd16 100644 --- a/src/se/leap/openvpn/OpenVpnService.java +++ b/src/se/leap/openvpn/OpenVpnService.java @@ -106,7 +106,7 @@ public class OpenVpnService extends VpnService implements StateListener, Callbac  		String ns = Context.NOTIFICATION_SERVICE;  		mNotificationManager = (NotificationManager) getSystemService(ns);  		int icon; -		if (state.equals("NOPROCESS") || state.equals("AUTH_FAILED") || state.equals("NONETWORK")){ +		if (state.equals("NOPROCESS") || state.equals("AUTH_FAILED") || state.equals("NONETWORK") || state.equals("EXITING")){  			icon = R.drawable.ic_vpn_disconnected;  		}else{	  			icon = R.drawable.ic_stat_vpn; | 
