Skip to content

Commit

Permalink
fix path error
Browse files Browse the repository at this point in the history
  • Loading branch information
absences committed Feb 28, 2024
1 parent b678688 commit d1aca5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/YooAsset/Runtime/CacheSystem/PersistentHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static string ConvertToWWWPath(string path)
#elif UNITY_IPHONE
return StringUtility.Format("file://{0}", path);
#elif UNITY_ANDROID
if (path.StartsWith("jar:file//"))
if (path.StartsWith("jar:file://"))
return path;
else
return StringUtility.Format("jar:file://{0}", path);
Expand Down

0 comments on commit d1aca5b

Please sign in to comment.