Give normal text higher priority

This commit is contained in:
Christian 2019-06-12 07:07:07 +00:00
parent 030d566e98
commit 7ec2cca470

View file

@ -74,8 +74,8 @@ class Event {
/// Use this to get the body. /// Use this to get the body.
String getBody () { String getBody () {
if (formattedText != "") return formattedText;
if (text != "") return text; if (text != "") return text;
if (formattedText != "") return formattedText;
return "*** Unable to parse Content ***"; return "*** Unable to parse Content ***";
} }