1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-12 01:40:53 +01:00

fixed error on windows

This commit is contained in:
TGS963 2022-08-26 06:45:43 +05:30
parent f4a3b79830
commit efab7018b0

View File

@ -5,6 +5,7 @@ const { spawn } = require("child_process");
const fs = require("fs");
const sizeOf = require("image-size");
const { autoUpdater } = require("electron-updater");
const { getPlatform } = require("./getPlatform");
const { execPath, modelsPath } = require("./binaries");
@ -105,7 +106,10 @@ ipcMain.on(commands.UPSCAYL, async (event, payload) => {
let outputDir = payload.outputPath;
// COPY IMAGE TO upscaled FOLDER
const fullfileName = payload.imagePath.split("/").slice(-1)[0];
const platform = getPlatform()
const fullfileName = platform === 'win'
? payload.imagePath.split("\\").slice(-1)[0]
: payload.imagePath.split("/").slice(-1)[0]
const fileName = parse(fullfileName).name;
const fileExt = parse(fullfileName).ext;