diff options
author | Robin McCorkell <rmccorkell@owncloud.com> | 2015-09-11 12:44:53 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@owncloud.com> | 2015-09-11 12:44:53 +0100 |
commit | 188d0e09b857e607b57b7686e95bbf0502359c2b (patch) | |
tree | dcd1fd2c38a81a7b99050d997092ab557011ce35 /lib/private/files/cache | |
parent | b8f7d85570f01a0d1baf3082b0d84b6bafc8ae8c (diff) | |
download | nextcloud-server-188d0e09b857e607b57b7686e95bbf0502359c2b.tar.gz nextcloud-server-188d0e09b857e607b57b7686e95bbf0502359c2b.zip |
Add reset method to mimetype loader
Used to solve concurrency issues
Diffstat (limited to 'lib/private/files/cache')
-rw-r--r-- | lib/private/files/cache/scanner.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php index f76ef5ba0dd..fb60ee5aa53 100644 --- a/lib/private/files/cache/scanner.php +++ b/lib/private/files/cache/scanner.php @@ -377,7 +377,7 @@ class Scanner extends BasicEmitter { // inserted mimetypes but those weren't available yet inside the transaction // To make sure to have the updated mime types in such cases, // we reload them here - $this->cache->loadMimetypes(); + \OC::$server->getMimeTypeLoader()->reset(); } foreach ($childQueue as $child => $childData) { |