1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 04:49:21 +00:00

Fix an issue

This commit is contained in:
Pierre HUBERT 2019-06-24 20:24:40 +02:00
parent 05b1aea7be
commit 4bcb56aa08

View File

@ -175,5 +175,7 @@ Widget smartInputCounterWidgetBuilder(
/// Parse an HTML String to decode special characters
String htmlDecodeCharacters(String input) {
if (input == null || input == "") return "";
return parse(input).documentElement.text;
}