1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-09 17:06:18 +00:00

Removed annoying NONE value from OwnCloudAccount#getDisplayName

This commit is contained in:
David A. Velasco 2016-06-15 10:21:20 +02:00
parent 75667c67f4
commit 4d80ca096d

View File

@ -145,7 +145,7 @@ public class OwnCloudAccount {
} else if (mCredentials != null) {
return mCredentials.getUsername();
} else {
return "NONE";
return null;
}
}