浏览代码

Fix order of parameters when getting notified of smb renames

Signed-off-by: Robin Appelman <robin@icewind.nl>
tags/v12.0.0beta1
Robin Appelman 7 年前
父节点
当前提交
b5401adc00
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 5 次插入3 次删除
  1. 5
    3
      apps/files_external/lib/Lib/Storage/SMB.php

+ 5
- 3
apps/files_external/lib/Lib/Storage/SMB.php 查看文件

@@ -457,9 +457,11 @@ class SMB extends Common implements INotifyStorage {
if (is_null($type)) {
return true;
}
if ($type === INotifyStorage::NOTIFY_RENAMED && !is_null($oldRenamePath)) {
$result = $callback($type, $path, $oldRenamePath);
$oldRenamePath = null;
if ($type === INotifyStorage::NOTIFY_RENAMED) {
if (!is_null($oldRenamePath)) {
$result = $callback($type, $oldRenamePath, $path);
$oldRenamePath = null;
}
} else {
$result = $callback($type, $path);
}

正在加载...
取消
保存