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
- UI Overlay Image gets darker on each Camera when multiple Cameras are used
- Assertion failed on expression: 'scriptedImporterClass == SCRIPTING_NULL error when opening the standalone profiler window
- Disabled assets in Import Unity Package window aren't tracked but count as being selected by user
- [Windows] Crash on GetManagerFromContext when video is playing and creating High Definition 3D Projects after FMOD failed to switch back to normal output Error appeared
- GC Alloc produced when adding items to MultiColumnListView with Auto Assign Binding
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.