소스 검색

feat: prefix forum channel name with 'f-'

ayn2op 3 년 전
부모
커밋
1782d34053
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      guilds_tree.go

+ 2 - 0
guilds_tree.go

@@ -104,6 +104,8 @@ func (gt *GuildsTree) channelToString(c discord.Channel) string {
 		s = "n-" + c.Name
 	case discord.GuildStore:
 		s = "s-" + c.Name
+	case discord.GuildForum:
+		s = "f-" + c.Name
 	default:
 		s = c.Name
 	}