Skip to content

Commit 9e60de0

Browse files
committed
Return false so that if the previous handler is the original PHP handler, it will be handled properly.
Signed-off-by: Jakub Gawron <kubatek94@gmail.com>
1 parent 26c0c1b commit 9e60de0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/private/Files/Storage/Local/DirectoryRenamer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ private function setupErrorHandler(): void {
112112
return call_user_func_array($previousHandler, func_get_args());
113113
}
114114

115-
return true;
115+
return false;
116116
}, E_WARNING | E_USER_WARNING);
117117
}
118118

0 commit comments

Comments
 (0)