Change wrong values used to form target URL

Dumb mistake by me, C# used ToString() on these objects.
This commit is contained in:
Craftplacer
2020-01-04 00:45:02 +01:00
parent 51556a809d
commit 9b95ce1045

View File

@ -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}";
} }
} }