Compare commits

..

No commits in common. "edd113abf7df639078df3cacb778d39bb86c5455" and "25e87ffd69987d518476868b5d90629637d48214" 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);
}