mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-12 03:54:28 +02:00
Experiment
This commit is contained in:
@@ -185,6 +185,7 @@ import biweekly.parameter.ParticipationStatus;
|
||||
import biweekly.property.Attendee;
|
||||
import biweekly.property.Method;
|
||||
import biweekly.property.Organizer;
|
||||
import biweekly.property.RawProperty;
|
||||
import biweekly.util.ICalDate;
|
||||
|
||||
import static android.app.Activity.RESULT_OK;
|
||||
@@ -2734,6 +2735,14 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
String description = (event.getDescription() == null ? null : event.getDescription().getValue());
|
||||
String location = (event.getLocation() == null ? null : event.getLocation().getValue());
|
||||
|
||||
if (false) {
|
||||
RawProperty xAltDesc = event.getExperimentalProperty("X-ALT-DESC");
|
||||
if (xAltDesc != null &&
|
||||
xAltDesc.getValue() != null &&
|
||||
"text/html".equals(xAltDesc.getParameter("FMTTYPE")))
|
||||
description = xAltDesc.getValue();
|
||||
}
|
||||
|
||||
ICalDate start = (event.getDateStart() == null ? null : event.getDateStart().getValue());
|
||||
ICalDate end = (event.getDateEnd() == null ? null : event.getDateEnd().getValue());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user