PS2_Manager/Core/Game.cs aktualisiert
All checks were successful
Java CI / test (push) Successful in 1m27s

This commit is contained in:
WeeXnes 2025-04-22 19:03:03 +00:00
parent 37d763970d
commit 784f3fba48

View file

@ -64,7 +64,7 @@ public class Game
public string GetGameTitle()
{
string url = $"http://localhost:3000/search/{this.GameID}";
string url = $"https://weexnes.dev:7722/search/{this.GameID}";
try
{
@ -113,13 +113,13 @@ public class Game
switch (type)
{
case Artwork.Type.Front:
url = $"http://localhost:3000/art/{this.GameID}/{this.GameID}_COV.png";
url = $"https://weexnes.dev:7722/art/{this.GameID}/{this.GameID}_COV.png";
break;
case Artwork.Type.Back:
url = $"http://localhost:3000/art/{this.GameID}/{this.GameID}_COV2.png";
url = $"https://weexnes.dev:7722/art/{this.GameID}/{this.GameID}_COV2.png";
break;
case Artwork.Type.Disc:
url = $"http://localhost:3000/art/{this.GameID}/{this.GameID}_ICO.png";
url = $"https://weexnes.dev:7722/art/{this.GameID}/{this.GameID}_ICO.png";
break;
}