mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 09:39:25 +03:00
When copy/move a file and creating a new folder we now go directly into this freshly created folder
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
5538a5e734
commit
67cb25a603
1 changed files with 4 additions and 1 deletions
|
@ -449,7 +449,10 @@ public class FolderPickerActivity extends FileActivity implements FileFragment.C
|
|||
) {
|
||||
|
||||
if (result.isSuccess()) {
|
||||
refreshListOfFilesFragment(false);
|
||||
OCFileListFragment fileListFragment = getListOfFilesFragment();
|
||||
if (fileListFragment != null) {
|
||||
fileListFragment.onItemClicked(getStorageManager().getFileByPath(operation.getRemotePath()));
|
||||
}
|
||||
} else {
|
||||
try {
|
||||
DisplayUtils.showSnackMessage(
|
||||
|
|
Loading…
Reference in a new issue