From 7ff18e8709e28edf797d11cbf2891687513b7948 Mon Sep 17 00:00:00 2001 From: topi314 Date: Wed, 5 Jun 2024 23:36:20 +0200 Subject: [PATCH] fix config struct tag --- lavalinkbot/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lavalinkbot/config.go b/lavalinkbot/config.go index 766bf97..936f4b4 100644 --- a/lavalinkbot/config.go +++ b/lavalinkbot/config.go @@ -80,7 +80,7 @@ func (c BotConfig) String() string { type GitHubConfig struct { ServerAddr string `yaml:"server_addr"` WebhookSecret string `yaml:"webhook_secret"` - Releases map[string]GithubReleaseConfig `yaml:"github_releases"` + Releases map[string]GithubReleaseConfig `yaml:"releases"` } func (c GitHubConfig) String() string {