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

Commit 267c7cfd authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Use .equals instead of !=

This code never worked. Please consider adding unit tests.
parent 8850a812
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 != "") {
			if (!cookiesString.equals("")) {
				ac.setUserData(savedAccount, Constants.KEY_COOKIES, cookiesString); 
				// Log_OC.d(TAG, "Saving Cookies: "+ cookiesString );
			}