a geicko-2 based round robin ranking system designed to test c++ battleship submissions battleship.dunkirk.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: parse the https out

+5 -1
+5 -1
internal/server/auth.go
··· 19 19 ) 20 20 21 21 func GetServerURL() string { 22 - return externalURL 22 + // Strip protocol (http://, https://) from URL for SSH commands 23 + url := externalURL 24 + url = strings.TrimPrefix(url, "https://") 25 + url = strings.TrimPrefix(url, "http://") 26 + return url 23 27 } 24 28 25 29 func SetConfig(passcode, url string) {