From: jabarros Date: Tue, 2 Sep 2014 12:30:28 +0000 (+0200) Subject: Fixed message when trying to move to a folder which does not exist anymore X-Git-Tag: oc-android-1.7.0_signed~197^2~4 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/f94781b4592667f12d2529989fe9fa626bfd1455 Fixed message when trying to move to a folder which does not exist anymore --- diff --git a/src/com/owncloud/android/ui/activity/MoveActivity.java b/src/com/owncloud/android/ui/activity/MoveActivity.java index 7dfb447e..be8fce1a 100644 --- a/src/com/owncloud/android/ui/activity/MoveActivity.java +++ b/src/com/owncloud/android/ui/activity/MoveActivity.java @@ -449,7 +449,7 @@ public class MoveActivity extends HookActivity implements FileFragment.Container if (currentDir == null) { // current folder was removed from the server Toast.makeText( MoveActivity.this, - String.format(getString(R.string.sync_current_folder_was_removed), "PLACEHOLDER"), + String.format(getString(R.string.sync_current_folder_was_removed), getCurrentFolder().getFileName()), Toast.LENGTH_LONG) .show(); browseToRoot();