From 784f3fba48d57dce59b35c167500bf33b9bd165e Mon Sep 17 00:00:00 2001 From: WeeXnes Date: Tue, 22 Apr 2025 19:03:03 +0000 Subject: [PATCH] PS2_Manager/Core/Game.cs aktualisiert --- PS2_Manager/Core/Game.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PS2_Manager/Core/Game.cs b/PS2_Manager/Core/Game.cs index 869aa51..a5830ea 100644 --- a/PS2_Manager/Core/Game.cs +++ b/PS2_Manager/Core/Game.cs @@ -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; }