fix path error

pull/245/head
unknown 2024-02-28 10:06:45 +08:00
parent b67868868d
commit d1aca5b675
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ namespace YooAsset
#elif UNITY_IPHONE #elif UNITY_IPHONE
return StringUtility.Format("file://{0}", path); return StringUtility.Format("file://{0}", path);
#elif UNITY_ANDROID #elif UNITY_ANDROID
if (path.StartsWith("jar:file//")) if (path.StartsWith("jar:file://"))
return path; return path;
else else
return StringUtility.Format("jar:file://{0}", path); return StringUtility.Format("jar:file://{0}", path);