fix xml parser

This commit is contained in:
IrosTheBeggar 2024-03-13 16:17:23 -04:00
parent 3e7c5092e5
commit 70fdf88f88
2 changed files with 3 additions and 2 deletions

View File

@ -98,7 +98,7 @@
"electron-updater": "^6.1.4",
"escape-string-regexp": "^4.0.0",
"express": "^4.18.2",
"fast-xml-parser": "^4.3.2",
"fast-xml-parser": "^4.3.5",
"ffbinaries": "^1.1.5",
"fluent-ffmpeg": "^2.1.2",
"http-proxy": "^1.18.1",

View File

@ -4,13 +4,14 @@ const nanoid = require('nanoid')
const winston = require('winston');
const path = require('path');
const { spawn } = require('child_process');
const parser = require('fast-xml-parser');
const { XMLParser } = require("fast-xml-parser");
const axios = require('axios');
const https = require('https');
const kill = require('tree-kill');
const killQueue = require('./kill-list');
const config = require('./config');
const parser = new XMLParser();
const platform = os.platform();
const osMap = {
"win32": "syncthing.exe",