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
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
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.