Include external participants for video call events

This commit is contained in:
Hadi Nategh 2021-05-06 13:49:12 +02:00
parent 8b9f520f86
commit 9b427f57fc
2 changed files with 2 additions and 2 deletions

View File

@ -3688,7 +3688,7 @@ var CalendarApp = /** @class */ (function (_super) {
// Send just the timestamp (as a string) with no timezone
(typeof _data.start != "string" ? _data.start.toJSON() : _data.start).slice(0, -1),
(typeof _data.end != "string" ? _data.end.toJSON() : _data.end).slice(0, -1), {
participants: Object.keys(_data.participants).filter(function (v) { return v.match(/^[0-9]/); })
participants: Object.keys(_data.participants).filter(function (v) { return v.match(/^[0-9]|[e]/); })
}], function (_value) {
if (_value) {
if (_value.err)

View File

@ -4577,7 +4577,7 @@ class CalendarApp extends EgwApp
( typeof _data.start != "string" ? _data.start.toJSON() : _data.start).slice(0,-1),
( typeof _data.end != "string" ? _data.end.toJSON() : _data.end).slice(0,-1),
{
participants:Object.keys(_data.participants).filter(v => {return v.match(/^[0-9]/)})
participants:Object.keys(_data.participants).filter(v => {return v.match(/^[0-9]|[e]/)})
}], function(_value){
if (_value)
{