Skip to content

Commit

Permalink
Fix menu banner not updating as often as we want it to
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Jan 31, 2024
1 parent 89a5be1 commit 4248593
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions osu.Game/Online/API/Requests/GetSystemTitleRequest.cs
@@ -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 4248593

Please sign in to comment.