Compare commits

..

No commits in common. "edd113abf7df639078df3cacb778d39bb86c5455" and "88088e4ae862dcce31bc212eac92b74e803c63f8" have entirely different histories.

View File

@ -132,7 +132,7 @@ pub fn sendMessageWithFiles(
self: *Self,
channel_id: Snowflake,
wf: CreateMessageWithFile,
) RequestFailedError!Result(Types.Message) {
) RequestFailedError!void {
var buf: [256]u8 = undefined;
const path = try std.fmt.bufPrint(&buf, "/channels/{d}/messages", .{channel_id.into()});
@ -2068,3 +2068,4 @@ pub fn deleteSticker(self: *Self, guild_id: Snowflake, sticker_id: Snowflake) Re
return req.delete(path);
}