Skip to content

Commit

Permalink
fix xml parser
Browse files Browse the repository at this point in the history
  • Loading branch information
IrosTheBeggar committed Mar 13, 2024
1 parent 3e7c509 commit 70fdf88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 2 additions & 1 deletion src/state/syncthing.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 70fdf88

Please sign in to comment.