There was an error while loading. Please reload this page.
1 parent c7faff5 commit 1f848acCopy full SHA for 1f848ac
lib/transporters.js
@@ -73,7 +73,7 @@ DefaultTransporter.prototype.wrapCallback_ = function(opt_callback) {
73
body = JSON.parse(body);
74
} catch (err) { /* no op */ }
75
76
- if (body && body.error && res.statusCode != 200) {
+ if (body && body.error && res.statusCode !== 200) {
77
if (typeof body.error === 'string') {
78
err = new Error(body.error);
79
err.code = res.statusCode;
0 commit comments