mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-17 03:25:14 -04:00
Use /skins/ instead of /static/skins for web client
This commit is contained in:
parent
fa11ad6cd4
commit
feb3524bf9
@ -746,9 +746,10 @@ static void Http_WorkerLoop(void) {
|
|||||||
#ifdef CC_BUILD_WEB
|
#ifdef CC_BUILD_WEB
|
||||||
/* Access to XMLHttpRequest at 'http://static.classicube.net' from origin 'http://www.classicube.net' has been blocked by CORS policy: */
|
/* Access to XMLHttpRequest at 'http://static.classicube.net' from origin 'http://www.classicube.net' has been blocked by CORS policy: */
|
||||||
/* No 'Access-Control-Allow-Origin' header is present on the requested resource. */
|
/* No 'Access-Control-Allow-Origin' header is present on the requested resource. */
|
||||||
const static String skinServer = String_FromConst("/static/skins/");
|
#define SKIN_SERVER "/skins/"
|
||||||
#else
|
#else
|
||||||
const static String skinServer = String_FromConst("http://static.classicube.net/skins/");
|
/* Prefer static.classicube.net to avoid a pointless redirect */
|
||||||
|
#define SKIN_SERVER "http://static.classicube.net/skins/"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void Http_AsyncGetSkin(const String* id, const String* skinName) {
|
void Http_AsyncGetSkin(const String* id, const String* skinName) {
|
||||||
@ -758,7 +759,7 @@ void Http_AsyncGetSkin(const String* id, const String* skinName) {
|
|||||||
if (Utils_IsUrlPrefix(skinName, 0)) {
|
if (Utils_IsUrlPrefix(skinName, 0)) {
|
||||||
String_Copy(&url, skinName);
|
String_Copy(&url, skinName);
|
||||||
} else {
|
} else {
|
||||||
String_AppendString(&url, &skinServer);
|
String_AppendConst(&url, SKIN_SERVER);
|
||||||
String_AppendColorless(&url, skinName);
|
String_AppendColorless(&url, skinName);
|
||||||
String_AppendConst(&url, ".png");
|
String_AppendConst(&url, ".png");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user