Copy ics as attachment

This commit is contained in:
M66B 2023-02-09 13:42:03 +01:00
parent da5bea4569
commit e562db96ad
1 changed files with 3 additions and 1 deletions

View File

@ -5345,8 +5345,10 @@ public class FragmentCompose extends FragmentBase {
attachment.progress = null;
attachment.available = true;
attachment.id = db.attachment().insertAttachment(attachment);
File file = attachment.getFile(context);
ics.renameTo(file);
Helper.copy(ics, file);
ics.delete();
ICalendar icalendar = Biweekly.parse(file).first();
VEvent event = icalendar.getEvents().get(0);