Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-replay-parser
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
ygopro-replay-parser
Commits
3bdc5fbe
Commit
3bdc5fbe
authored
Aug 17, 2021
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
653ec1d3
Pipeline
#4740
failed with stages
in 21 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
Replay.ts
Replay.ts
+3
-5
No files found.
Replay.ts
View file @
3bdc5fbe
...
...
@@ -196,14 +196,12 @@ export class Replay {
public
static
async
fromBuffer
(
buffer
:
Buffer
)
{
let
reader
=
new
ReplayReader
(
buffer
);
const
header
=
Replay
.
readHeader
(
reader
);
const
lzmaBuffer
=
Buffer
.
concat
([
header
.
getLzmaHeader
(),
reader
.
readAll
(),
]);
const
restBuffer
=
reader
.
readAll
();
const
lzmaBuffer
=
Buffer
.
concat
([
header
.
getLzmaHeader
(),
restBuffer
]);
let
decompressed
:
Buffer
;
if
(
!
header
.
isCompressed
)
{
// console.error(`no decompress`);
decompressed
=
lzma
Buffer
;
decompressed
=
rest
Buffer
;
}
else
{
// console.error(`decompressing`);
decompressed
=
Buffer
.
from
(
await
lzmaDecompress
(
lzmaBuffer
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment