diff options
author | Tulir Asokan <tulir@maunium.net> | 2018-05-24 23:42:19 +0300 |
---|---|---|
committer | Tulir Asokan <tulir@maunium.net> | 2018-05-24 23:42:19 +0300 |
commit | 1ed786ff5e8fedaf2dc6f9e112eae341fb61fa30 (patch) | |
tree | a711f5a25c600bb6bd09887961ec1746aa84a343 /config | |
parent | b76c8d01478bcdeb8e0f0c00ca56f577a425674b (diff) |
Remove json tags from UserPreferences
Diffstat (limited to 'config')
-rw-r--r-- | config/config.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/config.go b/config/config.go index 873c714..fb85a28 100644 --- a/config/config.go +++ b/config/config.go @@ -37,9 +37,9 @@ type AuthCache struct { } type UserPreferences struct { - HideUserList bool `yaml:"hide_user_list",json:"hide_user_list"` - HideRoomList bool `yaml:"hide_room_list",json:"hide_room_list"` - BareMessageView bool `yaml:"bare_message_view",json:"bare_message_view"` + HideUserList bool `yaml:"hide_user_list"` + HideRoomList bool `yaml:"hide_room_list"` + BareMessageView bool `yaml:"bare_message_view"` } // Config contains the main config of gomuks. |