PS2_Manager/Core/Game.cs aktualisiert
All checks were successful
Java CI / test (push) Successful in 1m27s
All checks were successful
Java CI / test (push) Successful in 1m27s
This commit is contained in:
parent
37d763970d
commit
784f3fba48
1 changed files with 4 additions and 4 deletions
|
@ -64,7 +64,7 @@ public class Game
|
||||||
|
|
||||||
public string GetGameTitle()
|
public string GetGameTitle()
|
||||||
{
|
{
|
||||||
string url = $"http://localhost:3000/search/{this.GameID}";
|
string url = $"https://weexnes.dev:7722/search/{this.GameID}";
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -113,13 +113,13 @@ public class Game
|
||||||
switch (type)
|
switch (type)
|
||||||
{
|
{
|
||||||
case Artwork.Type.Front:
|
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;
|
break;
|
||||||
case Artwork.Type.Back:
|
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;
|
break;
|
||||||
case Artwork.Type.Disc:
|
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;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue