mirror of
https://github.com/IrosTheBeggar/mStream.git
synced 2025-10-27 07:31:02 +00:00
fix xml parser
This commit is contained in:
parent
3e7c5092e5
commit
70fdf88f88
@ -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",
|
||||
|
||||
@ -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",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user