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
Describe the bug
It seems that when you run infinite, it shows up in the console, download failed eg: 2023-07-21T21:18:12+0200 <warn> index.js:75 (downloadFiles) Failed to download /_generated/sprite-pre-default.jpg
When I assume it will be creating the folder WITHOUT the file this could be the BUG I posted earlier: #12
To Reproduce
Steps to reproduce the behaviour:
Run infinite
Expected behaviour
Be efficient and fast for the user.
Screenshots
I show a part of the console so you can understand it, I don't really know if it is, but from what I understand, it's failing to download, but still, then it tries again and finally those files are downloaded. This could imply more time than infinite actually takes to download the assets.
2023-07-21T21:18:11+0200 <info> index.js:54 (downloadFiles) Attempting to download /_generated/sprite-pre-default.jpg
2023-07-21T21:18:11+0200 <info> index.js:70 (downloadFiles) Attempting to download https://assetcdn.rgpub.io/public/live/bundle-offload/7df87236-402e-487a-9b60-e3016ad27fe4/64b9a8e6fcae86000882534e/_/lib-embed/images/_generated/sprite-pre-default.jpg
2023-07-21T21:18:12+0200 <warn> index.js:75 (downloadFiles) Failed to download /_generated/sprite-pre-default.jpg
2023-07-21T21:18:12+0200 <info> index.js:54 (downloadFiles) Attempting to download /abilities-showcase-decor.jpg
2023-07-21T21:18:13+0200 <info> index.js:70 (downloadFiles) Attempting to download https://assetcdn.rgpub.io/public/live/bundle-offload/7df87236-402e-487a-9b60-e3016ad27fe4/64b9a8e6fcae86000882534e/_/lib-embed/images/abilities-showcase-decor.jpg
2023-07-21T21:18:14+0200 <warn> index.js:75 (downloadFiles) Failed to download /abilities-showcase-decor.jpg
2023-07-21T21:18:14+0200 <info> index.js:54 (downloadFiles) Attempting to download /bg-default.jpg
2023-07-21T21:18:14+0200 <info> index.js:70 (downloadFiles) Attempting to download https://assetcdn.rgpub.io/public/live/bundle-offload/7df87236-402e-487a-9b60-e3016ad27fe4/64b9a8e6fcae86000882534e/_/lib-embed/images/bg-default.jpg
2023-07-21T21:18:15+0200 <warn> index.js:75 (downloadFiles) Failed to download /bg-default.jpg
2023-07-21T21:18:15+0200 <info> index.js:54 (downloadFiles) Attempting to download /bg-index-samira.jpg
2023-07-21T21:18:16+0200 <info> index.js:70 (downloadFiles) Attempting to download https://assetcdn.rgpub.io/public/live/bundle-offload/7df87236-402e-487a-9b60-e3016ad27fe4/64b9a8e6fcae86000882534e/_/lib-embed/images/bg-index-samira.jpg
2023-07-21T21:18:17+0200 <warn> index.js:75 (downloadFiles) Failed to download /bg-index-samira.jpg
2023-07-21T21:18:17+0200 <info> index.js:54 (downloadFiles) Attempting to download /bg-index-viego.jpg
2023-07-21T21:18:17+0200 <info> index.js:70 (downloadFiles) Attempting to download https://assetcdn.rgpub.io/public/live/bundle-offload/7df87236-402e-487a-9b60-e3016ad27fe4/64b9a8e6fcae86000882534e/_/lib-embed/images/bg-index-viego.jpg
2023-07-21T21:18:18+0200 <warn> index.js:75 (downloadFiles) Failed to download /bg-index-viego.jpg
2023-07-21T21:18:18+0200 <info> index.js:54 (downloadFiles) Attempting to download /bg-intro.jpg
2023-07-21T21:18:19+0200 <info> index.js:70 (downloadFiles) Attempting to download https://assetcdn.rgpub.io/public/live/bundle-offload/7df87236-402e-487a-9b60-e3016ad27fe4/64b9a8e6fcae86000882534e/_/lib-embed/images/bg-intro.jpg
2023-07-21T21:18:20+0200 <warn> index.js:75 (downloadFiles) Failed to download /bg-intro.jpg
2023-07-21T21:18:20+0200 <info> index.js:54 (downloadFiles) Attempting to download /card-cinematic.jpg
2023-07-21T21:18:20+0200 <info> index.js:70 (downloadFiles) Attempting to download https://assetcdn.rgpub.io/public/live/bundle-offload/7df87236-402e-487a-9b60-e3016ad27fe4/64b9a8e6fcae86000882534e/_/lib-embed/images/card-cinematic.jpg
2023-07-21T21:18:21+0200 <warn> index.js:75 (downloadFiles) Failed to download /card-cinematic.jpg
2023-07-21T21:18:21+0200 <info> index.js:54 (downloadFiles) Attempting to download /card-new-mode.jpg
2023-07-21T21:18:22+0200 <info> index.js:70 (downloadFiles) Attempting to download https://assetcdn.rgpub.io/public/live/bundle-offload/7df87236-402e-487a-9b60-e3016ad27fe4/64b9a8e6fcae86000882534e/_/lib-embed/images/card-new-mode.jpg
Desktop (please complete the following information):
OS: Windows 10
The text was updated successfully, but these errors were encountered:
Due to the way we parse image paths we only know the relative path and have to see if we can figure out the full path from it. This is why you see it trying multiple paths as it may or may not be at that address and we won't know until we try the path.
It will only try again if the first try fails, while this is a slightly slower approach it allows for us to have a more complete download.
Describe the bug
It seems that when you run infinite, it shows up in the console, download failed eg:
2023-07-21T21:18:12+0200 <warn> index.js:75 (downloadFiles) Failed to download /_generated/sprite-pre-default.jpg
When I assume it will be creating the folder WITHOUT the file this could be the BUG I posted earlier: #12
To Reproduce
Steps to reproduce the behaviour:
Expected behaviour
Be efficient and fast for the user.
Screenshots
I show a part of the console so you can understand it, I don't really know if it is, but from what I understand, it's failing to download, but still, then it tries again and finally those files are downloaded. This could imply more time than infinite actually takes to download the assets.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: