Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2019-08-02 02:48:29 +0300
committerFeross Aboukhadijeh <feross@feross.org>2019-08-02 02:48:29 +0300
commit17443b6cc69b04ec51c01947dd4a5622279b4527 (patch)
treedd31a0c0011fe008950d60ef44047c4d4b79699d /lib
parent3ee9ed2c9d039f9d25d904a5a84d6cc68c502ae8 (diff)
stream-to-blob@2
For https://github.com/brave/brave-browser/issues/5490
Diffstat (limited to 'lib')
-rw-r--r--lib/file.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/file.js b/lib/file.js
index 8bcfe22..993e06a 100644
--- a/lib/file.js
+++ b/lib/file.js
@@ -104,7 +104,8 @@ class File extends EventEmitter {
getBlob (cb) {
if (typeof window === 'undefined') throw new Error('browser-only method')
- streamToBlob(this.createReadStream(), this._getMimeType(), cb)
+ streamToBlob(this.createReadStream(), this._getMimeType())
+ .then(blob => cb(null, blob), cb)
}
getBlobURL (cb) {