mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Change wrong values used to form target URL
Dumb mistake by me, C# used ToString() on these objects.
This commit is contained in:
@ -16,6 +16,6 @@ namespace osu.Game.Online.API.Requests
|
|||||||
this.message = message;
|
this.message = message;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override string Target => $"/chat/channels/{channel}/mark-as-read/{message}";
|
protected override string Target => $"chat/channels/{channel.Id}/mark-as-read/{message.Id}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user