MOBILE-1927 calendar: Fix error on description sync
parent
85ef2a8e12
commit
6c0594431d
|
@ -248,6 +248,11 @@ export class AddonCalendarSyncProvider extends CoreSyncBaseProvider {
|
||||||
// Try to send the data.
|
// Try to send the data.
|
||||||
const data = this.utils.clone(event); // Clone the object because it will be modified in the submit function.
|
const data = this.utils.clone(event); // Clone the object because it will be modified in the submit function.
|
||||||
|
|
||||||
|
data.description = {
|
||||||
|
text: data.description,
|
||||||
|
format: 1
|
||||||
|
};
|
||||||
|
|
||||||
return this.calendarProvider.submitEventOnline(eventId > 0 ? eventId : undefined, data, siteId).then((newEvent) => {
|
return this.calendarProvider.submitEventOnline(eventId > 0 ? eventId : undefined, data, siteId).then((newEvent) => {
|
||||||
result.updated = true;
|
result.updated = true;
|
||||||
result.events.push(newEvent);
|
result.events.push(newEvent);
|
||||||
|
|
Loading…
Reference in New Issue