Use default priority of 100 if backend default is not set
This commit is contained in:
parent
da03ef25d9
commit
856c48bc25
1 changed files with 7 additions and 2 deletions
|
@ -479,8 +479,13 @@ class OC_Mount_Config {
|
|||
|
||||
// Set default priority if none set
|
||||
if (!isset($mountPoints[$mountType][$applicable][$mountPoint]['priority'])) {
|
||||
$mountPoints[$mountType][$applicable][$mountPoint]['priority']
|
||||
= $backends[$class]['priority'];
|
||||
if (isset($backends[$class]['priority'])) {
|
||||
$mountPoints[$mountType][$applicable][$mountPoint]['priority']
|
||||
= $backends[$class]['priority'];
|
||||
} else {
|
||||
$mountPoints[$mountType][$applicable][$mountPoint]['priority']
|
||||
= 100;
|
||||
}
|
||||
}
|
||||
|
||||
self::writeData($isPersonal ? OCP\User::getUser() : NULL, $mountPoints);
|
||||
|
|
Loading…
Reference in a new issue