Use parent wrapper to properly handle moves on the same source/target storage
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
18dd1177c7
commit
ccfd28cbc3
|
@ -237,7 +237,7 @@ class Storage extends Wrapper {
|
||||||
/** @var Storage $sourceStorage */
|
/** @var Storage $sourceStorage */
|
||||||
$sourceStorage->disableTrash();
|
$sourceStorage->disableTrash();
|
||||||
}
|
}
|
||||||
$result = $this->getWrapperStorage()->moveFromStorage($sourceStorage, $sourceInternalPath, $targetInternalPath);
|
$result = parent::moveFromStorage($sourceStorage, $sourceInternalPath, $targetInternalPath);
|
||||||
if ($sourceIsTrashbin) {
|
if ($sourceIsTrashbin) {
|
||||||
/** @var Storage $sourceStorage */
|
/** @var Storage $sourceStorage */
|
||||||
$sourceStorage->enableTrash();
|
$sourceStorage->enableTrash();
|
||||||
|
|
Loading…
Reference in New Issue