From 780eec62b36ebb80075bb505b3fe181231cee5b1 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Thu, 16 Jun 2022 00:56:31 +0200 Subject: [PATCH] [ci skip] undoed .gencmdlist path, no effect --- src/NadekoBot/Modules/Help/Help.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NadekoBot/Modules/Help/Help.cs b/src/NadekoBot/Modules/Help/Help.cs index 3a49bee52..f6088251b 100644 --- a/src/NadekoBot/Modules/Help/Help.cs +++ b/src/NadekoBot/Modules/Help/Help.cs @@ -402,7 +402,7 @@ public partial class Help : NadekoModule ContentType = "application/json", ContentBody = uploadData, // either use a path provided in the argument or the default one for public nadeko, other/cmds.json - Key = $"cmds/v4/{StatsService.BOT_VERSION}.json", + Key = $"cmds/{StatsService.BOT_VERSION}.json", CannedACL = S3CannedACL.PublicRead }); } @@ -414,7 +414,7 @@ public partial class Help : NadekoModule using var oldVersionObject = await dlClient.GetObjectAsync(new() { BucketName = "nadeko-pictures", - Key = "cmds/v4/versions.json" + Key = "cmds/versions.json" }); await using var ms = new MemoryStream(); @@ -445,7 +445,7 @@ public partial class Help : NadekoModule ContentType = "application/json", ContentBody = versionListString, // either use a path provided in the argument or the default one for public nadeko, other/cmds.json - Key = "cmds/v4/versions.json", + Key = "cmds/versions.json", CannedACL = S3CannedACL.PublicRead }); }