fix a condition in our error handling that caused a false negative

pull/1/head
ansuz 4 years ago
parent 95778cc7c9
commit 3f3155bd28

@ -840,7 +840,7 @@ define([
Env.removeOwnedChannel(chan, function (obj) { Env.removeOwnedChannel(chan, function (obj) {
// If the error is that the file is already removed, nothing to // If the error is that the file is already removed, nothing to
// report, it's a normal behavior (pad expired probably) // report, it's a normal behavior (pad expired probably)
if (obj && obj.error && obj.error.code !== "ENOENT") { if (obj && obj.error && obj.error !== "ENOENT") {
// RPC may not be responding // RPC may not be responding
// Send a report that can be handled manually // Send a report that can be handled manually
if (fId && Env.folders[fId] && Env.folders[fId].deleting) { if (fId && Env.folders[fId] && Env.folders[fId].deleting) {
@ -911,7 +911,7 @@ define([
Env.removeOwnedChannel(chan, waitFor(function (obj) { Env.removeOwnedChannel(chan, waitFor(function (obj) {
// If the error is that the file is already removed, nothing to // If the error is that the file is already removed, nothing to
// report, it's a normal behavior (pad expired probably) // report, it's a normal behavior (pad expired probably)
if (obj && obj.error && obj.error.code !== "ENOENT") { if (obj && obj.error && obj.error !== "ENOENT") {
// RPC may not be responding // RPC may not be responding
// Send a report that can be handled manually // Send a report that can be handled manually
console.error(obj.error, chan); console.error(obj.error, chan);

Loading…
Cancel
Save