Give normal text higher priority
This commit is contained in:
parent
030d566e98
commit
7ec2cca470
|
@ -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 ***";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue