Skip to content

Commit

Permalink
Merge pull request #26889 from peppy/remove-cachebust-online-image
Browse files Browse the repository at this point in the history
Fix menu banner not updating as often as we want it to
  • Loading branch information
peppy authored Jan 31, 2024
2 parents 89a5be1 + 4248593 commit 7cdedfb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions osu.Game/Online/API/Requests/GetSystemTitleRequest.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using System;
using osu.Game.Online.API.Requests.Responses;

namespace osu.Game.Online.API.Requests
{
public class GetSystemTitleRequest : OsuJsonWebRequest<APISystemTitle>
{
public GetSystemTitleRequest()
: base($@"https://assets.ppy.sh/lazer-status.json?{DateTimeOffset.UtcNow.ToUnixTimeSeconds() / 1800}")
: base(@"https://assets.ppy.sh/lazer-status.json")
{
}
}
Expand Down

0 comments on commit 7cdedfb

Please sign in to comment.