fix(move): rename file after relocation
This commit is contained in:
parent
8f145735ed
commit
46dbde1103
@ -214,9 +214,12 @@ class PCloudImpl {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (source instanceof PCloudFolder) {
|
if (source instanceof PCloudFolder) {
|
||||||
|
//TODO: check if this can be reached at all
|
||||||
relocationResult = client().moveFolder(source.getId(), target.getParent().getId()).execute();
|
relocationResult = client().moveFolder(source.getId(), target.getParent().getId()).execute();
|
||||||
|
relocationResult = client().renameFolder(relocationResult.asFolder(), target.getName()).execute();
|
||||||
} else {
|
} else {
|
||||||
relocationResult = client().moveFile(source.getId(), target.getParent().getId()).execute();
|
relocationResult = client().moveFile(source.getId(), target.getParent().getId()).execute().asFile();
|
||||||
|
relocationResult = client().renameFile(relocationResult.asFile(), target.getName()).execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
idCache.remove(source);
|
idCache.remove(source);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user