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

Commit 4d80ca09 authored by David A. Velasco's avatar David A. Velasco
Browse files

Removed annoying NONE value from OwnCloudAccount#getDisplayName

parent 75667c67
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -145,7 +145,7 @@ public class OwnCloudAccount {
        } else if (mCredentials != null) {
            return mCredentials.getUsername();
        } else {
            return "NONE";
            return null;
        }
    }