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
fix(taskqueues-backup-images): Use Readable.fromWeb to handle web stream
The native fetch API returns a web stream, which is not compatible with the Node.js stream API used by Firebase Storage. This commit fixes the issue by converting the web stream to a Node.js stream using `Readable.fromWeb` and then piping it to the destination using `pipeline`.
This fix is applied to both the `Node` and `Node-1st-gen` versions of the `taskqueues-backup-images` function.
0 commit comments