@replicode/parallax
Advanced tools
Comparing version 1.2.14 to 1.2.15
@@ -103,5 +103,4 @@ "use strict"; | ||
let response = await this.client.get(route, { params }); | ||
this.logger.log(response.data); | ||
console.dir(response.data); | ||
if (response.data == null || response.data == '') { | ||
console.dir(`responseData: ${response.data}`); | ||
if (response.data == null) { | ||
return null; | ||
@@ -108,0 +107,0 @@ } |
{ | ||
"name": "@replicode/parallax", | ||
"version": "1.2.14", | ||
"version": "1.2.15", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index", |
@@ -126,5 +126,5 @@ import { Injectable, Logger } from '@nestjs/common'; | ||
this.logger.log(response.data); | ||
console.dir(response.data); | ||
if (response.data == null || response.data == '') { | ||
console.dir(`responseData: ${response.data}`); | ||
if (response.data == null) { | ||
return null; | ||
@@ -131,0 +131,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
58066
1301