mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
* CalDAV: fixed group-invitations got lost (urn:uuid url lost one char with each new import)
This commit is contained in:
parent
21989aa249
commit
f99e4f276a
@ -464,7 +464,7 @@ class calendar_ical extends calendar_boupdate
|
||||
{
|
||||
case 'g':
|
||||
$cutype = 'GROUP';
|
||||
$participantURL = 'urn:uuid:'.common::generate_uid('accounts', substr($uid, 1));
|
||||
$participantURL = 'urn:uuid:'.common::generate_uid('accounts', $uid);
|
||||
$members = $GLOBALS['egw']->accounts->members($uid, true);
|
||||
if (!isset($event['participants'][$this->user]) && in_array($this->user, $members))
|
||||
{
|
||||
@ -496,7 +496,7 @@ class calendar_ical extends calendar_boupdate
|
||||
default:
|
||||
$cutype = 'UNKNOWN';
|
||||
break;
|
||||
};
|
||||
}
|
||||
// generate urn:uuid, if we have no other participant URL
|
||||
if (empty($participantURL) && $info && $info['app'])
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user