Skip to content
Snippets Groups Projects
Commit 6ed9f53f authored by Robin Appelman's avatar Robin Appelman
Browse files

also update shared watcher

parent 0a3f57f8
No related branches found
No related tags found
No related merge requests found
......@@ -30,9 +30,11 @@ class Shared_Watcher extends Watcher {
* check $path for updates
*
* @param string $path
* @param array $cachedEntry
* @return boolean true if path was updated
*/
public function checkUpdate($path) {
if (parent::checkUpdate($path) === true) {
public function checkUpdate($path, $cachedEntry = null) {
if (parent::checkUpdate($path, $cachedEntry) === true) {
// since checkUpdate() has already updated the size of the subdirs,
// only apply the update to the owner's parent dirs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment