You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An error occurred while canceling the loading of files being cached.
Error Details:
TypeError: Cannot read properties of undefined (reading 'additionalDetails')
Steps to Reproduce
Start Caching Images,Here is the code: instance.imageIds.forEach((imageId, index) => { const options = { priority: 0, requestType: RequestType.Prefetch, additionalDetails: { imageId, index }, } as ImageLoaderOptions loadAndCacheImage(imageId, options).then(() => { instance.progress! += 1 }) })
3.When switching checks, attempt to cancel the previous requests by executing the following code: cancelLoadAll()
The current behavior
An unknown exception occurred:Cannot read properties of undefined (reading 'additionalDetails')
The expected behavior
Execution successful
OS
windows10
Node version
2.14.11
Browser
chrome131
The text was updated successfully, but these errors were encountered:
Describe the Bug
An error occurred while canceling the loading of files being cached.
Error Details:
TypeError: Cannot read properties of undefined (reading 'additionalDetails')
Steps to Reproduce
instance.imageIds.forEach((imageId, index) => { const options = { priority: 0, requestType: RequestType.Prefetch, additionalDetails: { imageId, index }, } as ImageLoaderOptions loadAndCacheImage(imageId, options).then(() => { instance.progress! += 1 }) })
3.When switching checks, attempt to cancel the previous requests by executing the following code:
cancelLoadAll()
The current behavior
An unknown exception occurred:Cannot read properties of undefined (reading 'additionalDetails')
The expected behavior
Execution successful
OS
windows10
Node version
2.14.11
Browser
chrome131
The text was updated successfully, but these errors were encountered: