I see following two warnings in the logs:
Storage wrapper 'readonly' was not registered via the 'OC_Filesystem - preSetup' hook which could cause potential problems.
Storage wrapper 'sharePermissions' was not registered via the 'OC_Filesystem - preSetup' hook which could cause potential problems.
They are added in owncloud/core#24335
They are registered in
|
\OC\Files\Filesystem::addStorageWrapper('readonly', function ($mountPoint, $storage) { |
and
|
\OC\Files\Filesystem::addStorageWrapper('sharePermissions', function ($mountPoint, $storage) use ($share) { |
I talked with @nickvergessen about this and he proposed to change the check to
if (self::$logWarningWhenAddingStorageWrapper && $wrapperName !== 'readonly') {
@icewind1991 What do do here? Is this the correct approach or should it be done somehow differently?
I see following two warnings in the logs:
They are added in owncloud/core#24335
They are registered in
server/apps/files_sharing/ajax/shareinfo.php
Line 66 in 0215b00
server/apps/dav/appinfo/v1/publicwebdav.php
Line 79 in 1fef5d3
I talked with @nickvergessen about this and he proposed to change the check to
@icewind1991 What do do here? Is this the correct approach or should it be done somehow differently?