Преглед изворни кода

refactor(main): ignore error while retrieving channels from cabinet

rigormorrtiss пре 4 година
родитељ
комит
f56217e298
1 измењених фајлова са 1 додато и 5 уклоњено
  1. 1 5
      discordo.go

+ 1 - 5
discordo.go

@@ -204,11 +204,7 @@ func onChannelsTreeViewSelected(node *tview.TreeNode) {
 	switch currentChannel.Type {
 	case discord.GuildCategory:
 		if len(node.GetChildren()) == 0 {
-			channels, err := discordState.Cabinet.Channels(currentGuild.ID)
-			if err != nil {
-				return
-			}
-
+			channels, _ := discordState.Cabinet.Channels(currentGuild.ID)
 			sort.SliceStable(channels, func(i, j int) bool {
 				return channels[i].Position < channels[j].Position
 			})