mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix: handleIMip undefined array key
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
This commit is contained in:
parent
f595d32c57
commit
e04fd0850f
1 changed files with 1 additions and 1 deletions
|
|
@ -290,7 +290,7 @@ class Manager implements IManager {
|
|||
}
|
||||
}
|
||||
|
||||
if ($options['absent'] === 'create') {
|
||||
if (isset($options['absent']) && $options['absent'] === 'create') {
|
||||
// retrieve the primary calendar for the user
|
||||
$calendar = $this->getPrimaryCalendar($userId);
|
||||
if ($calendar !== null && (
|
||||
|
|
|
|||
Loading…
Reference in a new issue