Compare commits
No commits in common. "160867b0377d30f82e32f3e078be18fcb17e413f" and "294e6ac1773a4373cd558bc4ba00eaff3821c642" have entirely different histories.
160867b037
...
294e6ac177
@ -1,19 +1,12 @@
|
||||
{
|
||||
"name": "AxibugEmuOnline.Client",
|
||||
"rootNamespace": "",
|
||||
"references": [
|
||||
"UIEffect",
|
||||
"AxiReplay",
|
||||
"Unity.Postprocessing.Runtime",
|
||||
"VirtualNes.Core"
|
||||
"Unity.Postprocessing.Runtime"
|
||||
],
|
||||
"optionalUnityReferences": [],
|
||||
"includePlatforms": [],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": true,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
"noEngineReferences": false
|
||||
"allowUnsafeCode": true
|
||||
}
|
@ -36,7 +36,7 @@ namespace AxibugEmuOnline.Client
|
||||
}
|
||||
AxiHttpProxy.ShowAxiHttpDebugInfo(request.downloadHandler);
|
||||
|
||||
if (request.downloadHandler.Err == null)
|
||||
if (request.downloadHandler.Err != null)
|
||||
{
|
||||
Directory.CreateDirectory(path);
|
||||
File.WriteAllBytes($"{path}/{url.GetHashCode()}", request.downloadHandler.data);
|
||||
|
@ -137,9 +137,13 @@ namespace AxibugEmuOnline.Client
|
||||
downloadRequest = null;
|
||||
|
||||
if (request.downloadHandler.Err != null)
|
||||
callback(request.downloadHandler.data);
|
||||
else
|
||||
{
|
||||
callback(null);
|
||||
}
|
||||
else
|
||||
{
|
||||
callback(request.downloadHandler.data);
|
||||
}
|
||||
|
||||
//downloadRequest = UnityWebRequest.Get($"{App.httpAPI.WebHost}/{webData.url}");
|
||||
//yield return downloadRequest.SendWebRequest();
|
||||
|
Loading…
Reference in New Issue
Block a user