Comparing version 0.0.90 to 0.0.91
@@ -745,5 +745,4 @@ 'use strict' | ||
if(this.data.send.length === 0) { | ||
await this.SetDataSequence(dataSequence).then(res => { | ||
console.log(res.length); | ||
}); | ||
const sequence = await this.SetDataSequence(dataSequence); | ||
const startData = { | ||
@@ -753,3 +752,3 @@ method: 'message', | ||
data: 'send_start', | ||
length: this.data.send.length, | ||
length: sequence.length, | ||
timestamp: moment.now(), | ||
@@ -833,5 +832,3 @@ } | ||
if(this.data.send.length === 0) { | ||
await this.SetDataChunkSequence(dataChunkSequence).then(res => { | ||
console.log(res.length); | ||
}); | ||
const sequence = await this.SetDataChunkSequence(dataChunkSequence); | ||
const startData = { | ||
@@ -841,3 +838,3 @@ method: 'message', | ||
data: 'send_start', | ||
length: this.data.send.length, | ||
length: sequence.length, | ||
timestamp: moment.now(), | ||
@@ -844,0 +841,0 @@ } |
{ | ||
"name": "guardee", | ||
"version": "0.0.90", | ||
"version": "0.0.91", | ||
"description": "Guardee Wallet API", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
49844
1302