modify default display name for root folder

This commit is contained in:
Joe Apicella 2017-10-25 21:41:19 -07:00 committed by tobiasKaminsky
parent 6e98e25184
commit 333b544001
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7

View file

@ -224,11 +224,16 @@ public final class ThemeUtils {
public static String getDefaultDisplayNameForRootFolder(Context context) {
OCCapability capability = getCapability(context);
if (capability.getServerName() == null || capability.getServerName().isEmpty()) {
return MainApp.getAppContext().getResources().getString(R.string.default_display_name_for_root_folder);
if (MainApp.isOnlyOnDevice()) {
return MainApp.getAppContext().getString(R.string.drawer_item_on_device);
} else {
return capability.getServerName();
if (capability.getServerName() == null || capability.getServerName().isEmpty()) {
return MainApp.getAppContext().getResources().getString(R.string.default_display_name_for_root_folder);
} else {
return capability.getServerName();
}
}
}
public static void setStatusBarColor(Activity activity, @ColorInt int color) {