Socket
Socket
Sign inDemoInstall

fortnite-replay-parser

Package Overview
Dependencies
70
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.4.4 to 1.4.5

2

package.json

@@ -6,3 +6,3 @@ {

},
"version": "1.4.4",
"version": "1.4.5",
"scripts": {

@@ -9,0 +9,0 @@ "run": "node --experimental-wasm-simd test.js",

@@ -34,5 +34,25 @@ const DataBunch = require("../Classes/DataBunch");

const classNetGUID = internalLoadObject(bunch.archive, false, globalData);
let bDeleteSubObject = false;
let bSerializeClass = true;
if (classNetGUID == null || !classNetGUID.isValid()) {
if (bunch.archive.header.EngineNetworkVersion >= 30) {
const isDestroyMessage = bunch.archive.readBit();
if (isDestroyMessage) {
bDeleteSubObject = true;
bSerializeClass = false;
bunch.archive.skipBits(8); // destroyFlags
}
}
let classNetGUID;
if (bSerializeClass) {
classNetGUID = internalLoadObject(bunch.archive, false, globalData);
bDeleteSubObject = !classNetGUID.isValid();
}
if (bDeleteSubObject) {
bObjectDeleted = true;

@@ -39,0 +59,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc