fixed loading bug

This commit is contained in:
Ultrablob 2024-04-23 14:38:44 -04:00
parent 4750befdfb
commit 5708cf5ea2
14 changed files with 421 additions and 98 deletions

View file

@ -2,9 +2,8 @@ extends RichTextLabel
@export var stopwatch: Stopwatch
var config = ConfigFile.new()
const DEV = true
var API_BASE = "https://flask-hello-world-nine-psi.vercel.app" if not DEV else "http://127.0.0.1:5001"
var API_BASE = "https://flask-hello-world-nine-psi.vercel.app"
func make_urlsafe(data: String):
return data.replace("+", "-").replace("/", "_")