diff options
author | Allan Wang <me@allanwang.ca> | 2019-09-28 23:39:43 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-09-28 23:39:43 -0700 |
commit | b67c1c8e0d06fc9ae57335fab88180cebfc20414 (patch) | |
tree | b49903a467b15889e981f45747021ea7e5e1c882 /app/src/main/kotlin/com/pitchedapps | |
parent | 96908453abbd7e40e13af4359d1bce4524b979a6 (diff) | |
download | frost-b67c1c8e0d06fc9ae57335fab88180cebfc20414.tar.gz frost-b67c1c8e0d06fc9ae57335fab88180cebfc20414.tar.bz2 frost-b67c1c8e0d06fc9ae57335fab88180cebfc20414.zip |
Remove accessibility text in parser
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps')
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers/NotifParser.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers/NotifParser.kt b/app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers/NotifParser.kt index f9db0a8f..d53b1e07 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers/NotifParser.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers/NotifParser.kt @@ -103,6 +103,7 @@ private class NotifParserImpl : FrostParserBase<FrostNotifs>(false) { private fun parseNotif(element: Element): FrostNotif? { val a = element.getElementsByTag("a").first() ?: return null + a.selectFirst("span.accessible_elem")?.remove() val abbr = element.getElementsByTag("abbr") val epoch = FB_EPOCH_MATCHER.find(abbr.attr("data-store"))[1]?.toLongOrNull() ?: -1L //fetch id |