@ray-js/robot-data-stream 0.0.12-beta-15 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api/sweeperP2p.js +0 -5
- package/package.json +1 -1
package/lib/api/sweeperP2p.js
CHANGED
|
@@ -458,11 +458,6 @@ export class SweeperP2p extends P2pApi {
|
|
|
458
458
|
return;
|
|
459
459
|
}
|
|
460
460
|
const cacheSerialNumber = this.packetSerialNumberCacheMap.get(fileName);
|
|
461
|
-
if (fileName.includes('cleanPath')) {
|
|
462
|
-
logger('info', {
|
|
463
|
-
msg: `receive a path package, ${fileSerialNumber}, ${packetIndex}, ${packetType}, ${cacheSerialNumber}}`
|
|
464
|
-
}, this.onLogger);
|
|
465
|
-
}
|
|
466
461
|
|
|
467
462
|
// 说明收到了过时包的数据
|
|
468
463
|
if (fileSerialNumber < cacheSerialNumber) return;
|