diff options
| author | LLLL Colonq <llll@colonq> | 2025-10-05 20:16:18 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-10-05 20:16:18 -0400 |
| commit | afcce7f07423288ce1596b19b9868b4073c18167 (patch) | |
| tree | f25801124982bf887b941c2f9ab19e4254e5acb6 | |
| parent | d2843a83668ad965cd75f4539407f805fc5c4f57 (diff) | |
fig-monitor-twitch: Tab-separate arguments for incoming events
| -rw-r--r-- | fig-monitor-twitch/src/Fig/Monitor/Twitch.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fig-monitor-twitch/src/Fig/Monitor/Twitch.hs b/fig-monitor-twitch/src/Fig/Monitor/Twitch.hs index 7e36e93..4243c46 100644 --- a/fig-monitor-twitch/src/Fig/Monitor/Twitch.hs +++ b/fig-monitor-twitch/src/Fig/Monitor/Twitch.hs @@ -431,7 +431,7 @@ twitchEventClient cfg busAddr = do _else -> log $ "Received unknown response: " <> tshow resp ) (\_cmds ev d -> do - let args = Text.splitOn " " $ decodeUtf8 d + let args = Text.splitOn "\t" $ decodeUtf8 d case (ev, args) of ("fig monitor twitch poll create", [title, schoices]) -> do let choices = Text.splitOn "," schoices |
