Преглед на файлове

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
 			})