Corrects formatting issue quirk unique to airtime

This commit is contained in:
2026-05-10 02:40:31 +00:00
parent f1fd59c199
commit 318bb095a1
+1 -1
View File
@@ -350,7 +350,7 @@ String _decodeHtml(String raw) {
return raw
.replaceAll('&', '&')
.replaceAll('"', '"')
.replaceAll(''', "'")
.replaceAll(''', "'")
.replaceAll('&lt;', '<')
.replaceAll('&gt;', '>');
}