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
diff options
context:
space:
mode:
-rw-r--r--lib/file.js3
-rw-r--r--package.json2
2 files changed, 3 insertions, 2 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) {
diff --git a/package.json b/package.json
index ccf4905..b9515e3 100644
--- a/package.json
+++ b/package.json
@@ -57,7 +57,7 @@
"simple-peer": "^9.0.0",
"simple-sha1": "^2.0.8",
"speedometer": "^1.0.0",
- "stream-to-blob": "^1.0.0",
+ "stream-to-blob": "^2.0.0",
"stream-to-blob-url": "^2.1.0",
"stream-with-known-length-to-buffer": "^1.0.0",
"torrent-discovery": "^9.1.1",