You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To work around the bug, we could manually "flatten" the TabConfig type in server, channel, and default configs, keep this bug open, and revert the change if the bug in serde_yaml is fixed one day.
The text was updated successfully, but these errors were encountered:
This was originally reported in #425.
(add this to crates/libtiny_tui/src/config.rs)
Here the problem is
notify
field is a sequence, but it should be a string.The error currently looks like this: (tiny efa1d22, uses serde 1.0.193 and serde_yaml 0.8.26)
Here the line number is incorrect, it should've been 5 (or 4 if it's 0 based).
This is a serde_yaml bug, first reported in 2019: dtolnay/serde-yaml#128.
To work around the bug, we could manually "flatten" the
TabConfig
type in server, channel, and default configs, keep this bug open, and revert the change if the bug in serde_yaml is fixed one day.The text was updated successfully, but these errors were encountered: