Added .qimport and .qexport commands, fixed some response strings

This commit is contained in:
Kwoth
2021-12-11 15:27:32 +01:00
parent 02eb6e172b
commit 36c013fbb5
7 changed files with 164 additions and 5 deletions

View File

@@ -310,7 +310,7 @@ namespace NadekoBot.Modules.CustomReactions
_ = ctx.Channel.TriggerTypingAsync();
var serialized = _service.ExportCrs(ctx.Guild?.Id);
using var stream = await serialized.ToStream();
await using var stream = await serialized.ToStream();
await ctx.Channel.SendFileAsync(stream, "crs-export.yml", text: null);
}