remove workshop prefix
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Philipp 2021-10-14 11:24:54 +02:00
parent 4b7f1cc64a
commit 6fddd532c2
1 changed files with 8 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import (
"time"
"log"
"net/http"
"strings"
"git.snrd.de/Spaenny/steamServer"
"git.snrd.de/Spaenny/steamServer/postgres"
@ -91,6 +92,13 @@ func updateServers(host string, store steamServer.Store) {
}
log.Printf("%s - %s\n", host, info.Name)
// Some Servers use workshop maps and add a prefix, we don't need that
if strings.HasPrefix(info.Map, "workshop/") {
mapSplit := strings.Split(info.Map, "/")
info.Map = mapSplit[1]
}
server := steamServer.Server {
AppID: info.ID,