Inhibit warning about adding storage wrapper too early

The app maintainer likely knew what he was doing so doing it in this
place should be ok.

Signed-off-by: Vincent Petry <vincent@nextcloud.com>
This commit is contained in:
Vincent Petry 2021-06-15 14:32:57 +02:00
Родитель c7f8b8e390
Коммит b3779eaa52
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: E055D6A4D513575C
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -49,6 +49,7 @@ class Application extends App implements IBootstrap {
}
public function setupWrapper() {
$previousLog = \OC\Files\Filesystem::logWarningWhenAddingStorageWrapper(false);
\OC\Files\Filesystem::addStorageWrapper(
'sharepermissions',
function ($mountPoint, IStorage $storage) {
@ -63,5 +64,6 @@ class Application extends App implements IBootstrap {
},
-15
);
\OC\Files\Filesystem::logWarningWhenAddingStorageWrapper($previousLog);
}
}