diff --git a/lib/src/Event.dart b/lib/src/Event.dart index 68fa1f9..373d342 100644 --- a/lib/src/Event.dart +++ b/lib/src/Event.dart @@ -74,8 +74,8 @@ class Event { /// Use this to get the body. String getBody () { - if (formattedText != "") return formattedText; if (text != "") return text; + if (formattedText != "") return formattedText; return "*** Unable to parse Content ***"; }