mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 04:02:57 +08:00
Change wrong values used to form target URL
Dumb mistake by me, C# used ToString() on these objects.
This commit is contained in:
parent
51556a809d
commit
9b95ce1045
@ -16,6 +16,6 @@ namespace osu.Game.Online.API.Requests
|
||||
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}";
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user