mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 09:23:51 +03:00
Fix not entering folder upon creation
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
c1512ff580
commit
f70e830deb
1 changed files with 1 additions and 1 deletions
|
@ -1916,7 +1916,7 @@ public class FileDisplayActivity extends FileActivity
|
||||||
if (result.isSuccess()) {
|
if (result.isSuccess()) {
|
||||||
OCFileListFragment fileListFragment = getListOfFilesFragment();
|
OCFileListFragment fileListFragment = getListOfFilesFragment();
|
||||||
if (fileListFragment != null) {
|
if (fileListFragment != null) {
|
||||||
fileListFragment.onItemClicked(getStorageManager().getFileByPath(operation.getRemotePath()));
|
fileListFragment.onItemClicked(getStorageManager().getFileByDecryptedRemotePath(operation.getRemotePath()));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue