diff options
author | Allan Wang <me@allanwang.ca> | 2019-08-19 23:53:02 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-08-19 23:53:16 -0700 |
commit | de4f6072f4318661734acd57ca1684a002f68f45 (patch) | |
tree | c706566913cd80d79bdcae5502f70fde246ba2a7 /app/src/main/kotlin/com | |
parent | 2ce40832f715b2a867fa98480ec55a9f6bdfb109 (diff) | |
download | frost-de4f6072f4318661734acd57ca1684a002f68f45.tar.gz frost-de4f6072f4318661734acd57ca1684a002f68f45.tar.bz2 frost-de4f6072f4318661734acd57ca1684a002f68f45.zip |
Remove _ft_ query, resolves #1506
Diffstat (limited to 'app/src/main/kotlin/com')
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/facebook/FbUrlFormatter.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbUrlFormatter.kt b/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbUrlFormatter.kt index 16cbc9c8..2b576ae1 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbUrlFormatter.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/facebook/FbUrlFormatter.kt @@ -137,7 +137,7 @@ class FbUrlFormatter(url: String) { * * acontext is not required for "friends interested in" notifications */ - val discardableQueries = arrayOf("ref", "refid", "SharedWith", "fbclid") + val discardableQueries = arrayOf("ref", "refid", "SharedWith", "fbclid", "_ft_") val converter = listOf( "\\3C " to "%3C", "\\3E " to "%3E", "\\23 " to "%23", "\\25 " to "%25", |