Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b102d1cd authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Change the order to prevent NullPointerExceptions

parent 267c7cfd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -218,7 +218,7 @@ public class AccountUtils {

		if (client != null) {
			String cookiesString = client.getCookiesString();
			if (!cookiesString.equals("")) {
			if (!"".equals(cookiesString)) {
				ac.setUserData(savedAccount, Constants.KEY_COOKIES, cookiesString); 
				// Log_OC.d(TAG, "Saving Cookies: "+ cookiesString );
			}