From 318bb095a12dabf7f76e620e6f67094154a409ab Mon Sep 17 00:00:00 2001 From: kfj001 Date: Sun, 10 May 2026 02:40:31 +0000 Subject: [PATCH] Corrects formatting issue quirk unique to airtime --- lib/live_info_business_object.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/live_info_business_object.dart b/lib/live_info_business_object.dart index 80dfd99..d46dd55 100644 --- a/lib/live_info_business_object.dart +++ b/lib/live_info_business_object.dart @@ -350,7 +350,7 @@ String _decodeHtml(String raw) { return raw .replaceAll('&', '&') .replaceAll('"', '"') - .replaceAll(''', "'") + .replaceAll(''', "'") .replaceAll('<', '<') .replaceAll('>', '>'); }