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:
authorJohn Hiesey <john@hiesey.com>2021-03-05 08:38:21 +0300
committerJohn Hiesey <john@hiesey.com>2021-03-05 08:38:21 +0300
commit860a4ce1812dcc25c9876587619de61eb48b26e4 (patch)
treede51ae5ce49ff64ab4259cd17ed16fcac6dad661 /lib
parent3186060eea5952ff81e8185810f105c40ca81a53 (diff)
Destroy torrent if putting into store fails
Diffstat (limited to 'lib')
-rw-r--r--lib/torrent.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/torrent.js b/lib/torrent.js
index 930304f..3760db2 100644
--- a/lib/torrent.js
+++ b/lib/torrent.js
@@ -1599,7 +1599,9 @@ class Torrent extends EventEmitter {
self._reservations[index] = null
self.bitfield.set(index, true)
- self.store.put(index, buf)
+ self.store.put(index, buf, err => {
+ if (err) self._destroy(err)
+ })
self.wires.forEach(wire => {
wire.have(index)