about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-07-17T14·17-0400
committerglittershark <grfn@gws.fyi>2020-07-17T20·39+0000
commit8138621b11b70e3a12c4d6f24e0b7ca1118e83db (patch)
tree995d7c98eb296554b09053523005380efb50ee65 /users
parentb32274120c6e7abd2a30c1654dd7368939ac85dd (diff)
fix(owothia): Add " to stopword list r/1362
how *this* got classified as a verb I will never understand.

Change-Id: I1ae0c5092b0f4371fb191e19f576dac89fb941ab
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1250
Tested-by: BuildkiteCI
Reviewed-by: isomer <isomer@tvl.fyi>
Diffstat (limited to 'users')
-rw-r--r--users/glittershark/owothia/src/Main.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/users/glittershark/owothia/src/Main.hs b/users/glittershark/owothia/src/Main.hs
index 5e0f18a924..941c9adfc3 100644
--- a/users/glittershark/owothia/src/Main.hs
+++ b/users/glittershark/owothia/src/Main.hs
@@ -36,6 +36,7 @@ instance FromEnv Config where
 
 stopWord :: Text -> Bool
 stopWord "'s"   = True
+stopWord "\""   = True
 stopWord "is"   = True
 stopWord "are"  = True
 stopWord "am"   = True
@@ -103,7 +104,7 @@ main = do
   conf <- either fail pure =<< decodeEnv
   tagger <- defaultTagger
   state <- newIORef $ not . isJust $ (conf ^. nickservPassword)
-  let nick = fromMaybe "owothia" (conf ^. ircNick) 
+  let nick = fromMaybe "owothia" (conf ^. ircNick)
       conn =
         plainConnection (conf ^. ircServer) (conf ^. ircPort)
           & realname .~ "Owothia Revströwö"