mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
Merge pull request #55133 from nextcloud/fix/handleIMip-undefined-array-key
fix: handleIMip undefined array key
This commit is contained in:
commit
5ed702e4dc
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