소스 검색

Fix order of parameters when getting notified of smb renames

Signed-off-by: Robin Appelman <robin@icewind.nl>
Robin Appelman 8 년 전
부모
커밋
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);
 			}