From a79cf37eb555833c0e5352e22187f23115718d9c Mon Sep 17 00:00:00 2001 From: Guillaume Latour Date: Thu, 20 Feb 2020 14:15:47 +0100 Subject: [PATCH] fix serdeyaml error This potentialy fix the following error : ``` Error(SerdeYaml(Message("invalid type: map, expected a string", Some(Pos { marker: Marker { index: 143, line: 9, col: 12 }, path: "servers[0].channels[0]" }))), State { next_error: None, backtrace: None }) ``` --- config.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/config.yaml b/config.yaml index 73005dc..3646831 100644 --- a/config.yaml +++ b/config.yaml @@ -5,9 +5,7 @@ servers: - name: Mozilla host: irc.mozilla.org port: 6697 - channels: - - name: '#c74d' - - name: '#rust-irc' + channels: ["#c74d","#rust-irc"] admins: - nick: c74d user: c74d