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
blobStore.get() does not consistently handle errors. Specifically, if data is not available, then sometimes it will return null and sometimes it will throw an error.
I think rather than returning null at all, it should always throw an error when data is not available and when it is not found.
It may be difficult / impossible to tell the difference between "not found" and "not downloaded" when the blob db has not replicated.
Tasks
Consistently throw an error for either not found blobs or not-downloaded blobs
The text was updated successfully, but these errors were encountered:
Description
blobStore.get()
does not consistently handle errors. Specifically, if data is not available, then sometimes it will returnnull
and sometimes it will throw an error.I think rather than returning
null
at all, it should always throw an error when data is not available and when it is not found.It may be difficult / impossible to tell the difference between "not found" and "not downloaded" when the blob db has not replicated.
Tasks
The text was updated successfully, but these errors were encountered: