diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php
index 83d3585bb5f03a43d870ad2152f6bc03660360ce..7c6bba4fadb1d8134338854e14321db2f0594172 100644
--- a/lib/files/cache/cache.php
+++ b/lib/files/cache/cache.php
@@ -340,6 +340,22 @@ class Cache {
 		return $result->fetchAll();
 	}
 
+	/**
+	 * update the folder size and the size of all parent folders
+	 *
+	 * @param $path
+	 */
+	public function correctFolderSize($path) {
+		$this->calculateFolderSize($path);
+		if ($path !== '') {
+			$parent = dirname($path);
+			if ($parent === '.') {
+				$parent = '';
+			}
+			$this->correctFolderSize($parent);
+		}
+	}
+
 	/**
 	 * get the size of a folder and set it in the cache
 	 *
diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php
index 7062888d74ad55f0046f664c900ad2c23c24f302..0adde1d354daa62b27b64c669549a250772f4b6a 100644
--- a/lib/files/cache/scanner.php
+++ b/lib/files/cache/scanner.php
@@ -107,20 +107,4 @@ class Scanner {
 		}
 		return $size;
 	}
-
-	/**
-	 * update the folder size and the size of all parent folders
-	 *
-	 * @param $path
-	 */
-	public function correctFolderSize($path) {
-		$this->cache->calculateFolderSize($path);
-		if ($path !== '') {
-			$parent = dirname($path);
-			if ($parent === '.') {
-				$parent = '';
-			}
-			$this->correctFolderSize($parent);
-		}
-	}
 }
diff --git a/lib/files/cache/watcher.php b/lib/files/cache/watcher.php
index f04ca9b4656655a4f38c12dad2b1d475877fb7ae..d6039d9945c08050c3a883cb6456295b266b7f6d 100644
--- a/lib/files/cache/watcher.php
+++ b/lib/files/cache/watcher.php
@@ -50,7 +50,7 @@ class Watcher {
 			} else {
 				$this->scanner->scanFile($path);
 			}
-			$this->scanner->correctFolderSize($path);
+			$this->cache->correctFolderSize($path);
 		}
 	}
 
diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php
index 34d38c427360264b454393731c0afc6e0a073f65..f784a82dada11e5f636eab2661b194b5b6dd5a0b 100644
--- a/tests/lib/files/cache/scanner.php
+++ b/tests/lib/files/cache/scanner.php
@@ -98,7 +98,7 @@ class Scanner extends \UnitTestCase {
 
 		$this->assertNotEqual($cachedDataFolder2['size'], -1);
 
-		$this->scanner->correctFolderSize('folder');
+		$this->cache->correctFolderSize('folder');
 
 		$cachedDataFolder = $this->cache->get('');
 		$this->assertNotEqual($cachedDataFolder['size'], -1);