summaryrefslogtreecommitdiff
path: root/src/Config.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Config.hs')
-rw-r--r--src/Config.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Config.hs b/src/Config.hs
index ffd4875..d6cf021 100644
--- a/src/Config.hs
+++ b/src/Config.hs
@@ -69,7 +69,7 @@ type family IfFull stage a where
IfFull Full a = a
-- | network, channelname
-data Channel = Channel { chanNetwork :: Text, chanChannel :: Text }
+data Channel = Channel { chanNetwork :: !Text, chanChannel :: !Text }
deriving (Show, Eq, Ord)
prettyChannel :: Channel -> Text