diff --git a/ArtAPI/ArtStationAPI.cs b/ArtAPI/ArtStationAPI.cs index c18e6ac..498e27f 100644 --- a/ArtAPI/ArtStationAPI.cs +++ b/ArtAPI/ArtStationAPI.cs @@ -74,7 +74,11 @@ private async Task GetAssets(string hash_id, string name) { ImagesToDownload.Add(new ImageModel() { - Url = image["image_url"].ToString(), + Url = image["image_url"].ToString().Replace("/large/", "/4k/") + .Replace("/covers/", "/images/") + .Replace("/video_clips/", "/images/") + .Replace("/videos/","/images/") + .Replace("/panos/", "/images/"), // workaround to download 4k images, maybe there's a better way, I might change this later Name = name, ID = image["id"].ToString() });