From: Thomas Müller Date: Tue, 10 Mar 2015 10:47:06 +0000 (+0100) Subject: tearDown the filesystem right before setting it up again X-Git-Tag: v8.1.0alpha1~282^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7cb6811a7b23a2fed96bea65b9ea8aaad512e33a;p=nextcloud-server.git tearDown the filesystem right before setting it up again --- diff --git a/apps/files_trashbin/command/expire.php b/apps/files_trashbin/command/expire.php index 842e061eeb9..968608a31cb 100644 --- a/apps/files_trashbin/command/expire.php +++ b/apps/files_trashbin/command/expire.php @@ -49,6 +49,7 @@ class Expire implements ICommand { } public function handle() { + \OC_Util::tearDownFS(); \OC_Util::setupFS($this->user); Trashbin::expire($this->trashBinSize, $this->user); }