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
chunks are loaded but it is possible that chunk is not full and an exception will be thrown in this case. These chunks should be skipped (or at least there should be an option for this).
Here:
prismarine-provider-anvil/src/anvil.js
Line 59 in dc32ad7
chunks are loaded but it is possible that chunk is not full and an exception will be thrown in this case. These chunks should be skipped (or at least there should be an option for this).
this line
prismarine-provider-anvil/src/anvil.js
Line 63 in dc32ad7
can be changed to
(await Promise.allSettled(chunks)).filter(x => x.status === 'fulfilled').map(x => x.value)
Also, I wonder why the file is getting closed later
prismarine-provider-anvil/src/anvil.js
Line 64 in dc32ad7
The text was updated successfully, but these errors were encountered: