From 7ec2cca47051cb105d67053370d692d1b8c1a0ff Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 12 Jun 2019 07:07:07 +0000 Subject: [PATCH] Give normal text higher priority --- lib/src/Event.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ***"; }