Disable debug

This commit is contained in:
Sergei Birukov 2024-03-13 13:26:27 +03:00 committed by Philip H
parent 98a5daf458
commit 262318df27
1 changed files with 3 additions and 3 deletions

View File

@ -188,9 +188,9 @@ new Vue({
}
// Debug
client.transferRx = this.clientsPersist[client.id].transferRxPrevious + Math.random() * 1000;
client.transferTx = this.clientsPersist[client.id].transferTxPrevious + Math.random() * 1000;
client.latestHandshakeAt = new Date();
// client.transferRx = this.clientsPersist[client.id].transferRxPrevious + Math.random() * 1000;
// client.transferTx = this.clientsPersist[client.id].transferTxPrevious + Math.random() * 1000;
// client.latestHandshakeAt = new Date();
this.clientsPersist[client.id].transferRxCurrent = client.transferRx - this.clientsPersist[client.id].transferRxPrevious;
this.clientsPersist[client.id].transferRxPrevious = client.transferRx;