Search Issue Tracker
By Design
Votes
4
Found in
2018.3.0a1
2018.3.13f1
2019.1.0a1
2019.2.0a1
2019.3.0a1
Issue ID
1149342
Regression
No
Cache system Caching.IsVersionCached reporting true but Caching.GetCachedVersions has no knowledge the bundle
Steps to reproduce:
1. Open attached project
2. Switch to Android platform
3. Play the editor
4. Wait until asset bundle manager report in console Init completed
5. Click on start downloading button and wait until all bundles are downloaded
6. When the bundles are downloaded click on check download buttons.
7. Observe that AssetBundlesManager.cs outputs the following to the console window: Debug.LogError("Caching.IsVersion cached is reporting true but Caching.GetCachedVersions has no knowledge this bundle.");
Expected result: Caching.GetCachedVersions should return all cached versions of the given AssetBundle
Reproduced in: 2019.3.0a1, 2018.3.13f1, 2018.3.0a1
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Some particles do not disappear when setting the particle remainingLifetime property to 0
- Mouse input is registered incorrectly in Custom RP when downscaling Render Target and rendering Overlay UI before final upscale
- Time.deltaTime is locked to the display's refresh rate when the built Player is moved to a Secondary Display and Windowed Mode is used
- Crash on RaiseException when importing a specific asset
- Crash on RaiseException when opening a specific project
Resolution Note:
Incorrect API usage. API "IsVersionCached" used takes a URL and hash, API "GetCachedVersions" takes an assetBundleName, but same value is being passed into the URL and assetBundleName parameters which is incorrect. Code should be changed to use the API "bool IsVersionCached(CachedAssetBundle cachedBundle)" as CachedAssetBundle is constructed with an assetBundleName and hash.