Skip to content
Snippets Groups Projects
Commit a57a9f03 authored by Alexander Rose's avatar Alexander Rose
Browse files

fix psf parser

parent 11a6df6e
No related branches found
No related tags found
No related merge requests found
......@@ -151,7 +151,7 @@ async function parseInternal(data: string, ctx: RuntimeContext): Promise<Result<
const id = readLine(state.tokenizer).trim()
while(tokenizer.tokenEnd < tokenizer.length) {
const line = readLine(state.tokenizer)
const line = readLine(state.tokenizer).trim()
if (line.includes('!NTITLE')) {
const numTitle = parseInt(line.split(reWhitespace)[0])
title = parseTitle(state, numTitle)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment