1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 12:53:11 +08:00

Fix incorrect type specification

This commit is contained in:
Dean Herbert 2019-07-04 16:16:17 +09:00 committed by GitHub
parent 4885f0f0c7
commit 2b9f7d551f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ namespace osu.Game.Online.API.Requests.Responses
[JsonProperty("versions")]
public VersionNavigation Versions { get; set; }
public object Url => $"https://osu.ppy.sh/home/changelog/{UpdateStream.Name}/{Version}";
public string Url => $"https://osu.ppy.sh/home/changelog/{UpdateStream.Name}/{Version}";
public class VersionNavigation
{