diff --git a/Assets/ManagedResources/~Lua/Modules/Login/LoginManager.lua b/Assets/ManagedResources/~Lua/Modules/Login/LoginManager.lua index a543ea702d..d5e60749fb 100644 --- a/Assets/ManagedResources/~Lua/Modules/Login/LoginManager.lua +++ b/Assets/ManagedResources/~Lua/Modules/Login/LoginManager.lua @@ -181,7 +181,7 @@ end require("Base.HttpCrypt") local CRYPT_KEY = "d53b3e8ef74bf72d8aafce3a1c8671a0" -function this:SendGetHttp(url, callback) +function this:SendGetHttp(url, callback, _, _, failCB) local request = url LogGreen("Http请求:"..request) if AppConst.Platform == "IOS" then @@ -199,7 +199,7 @@ function this:SendGetHttp(url, callback) if callback then callback(msg) end - end, nil, nil, nil) + end, nil, nil, failCB) end