[website] [fix]
diff --git a/startup/website.py b/startup/website.py
index 4c2f565..be8eba6 100644
--- a/startup/website.py
+++ b/startup/website.py
@@ -71,8 +71,8 @@
 		"disable_signup"]:
 		args[k] = cint(args.get(k) or 0)
 	
-	args.url = quote(cstr(get_request_site_address(full_address=True)), cstr(""))
-	args.encoded_title = quote(cstr(args.title or ""), cstr(""))
+	args.url = quote(str(get_request_site_address(full_address=True)), str(""))
+	args.encoded_title = quote(str(args.title or ""), str(""))
 	
 	return args
 	
\ No newline at end of file