mirror of https://github.com/M66B/FairEmail.git
Copy ics as attachment
This commit is contained in:
parent
da5bea4569
commit
e562db96ad
|
@ -5345,8 +5345,10 @@ public class FragmentCompose extends FragmentBase {
|
||||||
attachment.progress = null;
|
attachment.progress = null;
|
||||||
attachment.available = true;
|
attachment.available = true;
|
||||||
attachment.id = db.attachment().insertAttachment(attachment);
|
attachment.id = db.attachment().insertAttachment(attachment);
|
||||||
|
|
||||||
File file = attachment.getFile(context);
|
File file = attachment.getFile(context);
|
||||||
ics.renameTo(file);
|
Helper.copy(ics, file);
|
||||||
|
ics.delete();
|
||||||
|
|
||||||
ICalendar icalendar = Biweekly.parse(file).first();
|
ICalendar icalendar = Biweekly.parse(file).first();
|
||||||
VEvent event = icalendar.getEvents().get(0);
|
VEvent event = icalendar.getEvents().get(0);
|
||||||
|
|
Loading…
Reference in New Issue