Merge pull request #21247 from nextcloud/backport/21229/stable19
[stable19] Fix empty event UUID reminder notifications
This commit is contained in:
commit
bbd97db4f6
|
@ -95,8 +95,10 @@ class PushProvider extends AbstractProvider {
|
|||
$eventDetails = $this->extractEventDetails($vevent);
|
||||
$eventDetails['calendar_displayname'] = $calendarDisplayName;
|
||||
$eventUUID = (string) $vevent->UID;
|
||||
// Empty Notification ObjectId will be catched by OC\Notification\Notification
|
||||
$eventUUIDHash = $eventUUID ? hash('sha256', $eventUUID, false) : '';
|
||||
if (!$eventUUID) {
|
||||
return;
|
||||
};
|
||||
$eventUUIDHash = hash('sha256', $eventUUID, false);
|
||||
|
||||
foreach ($users as $user) {
|
||||
/** @var INotification $notification */
|
||||
|
|
Loading…
Reference in New Issue