Skip to content
This repository has been archived by the owner on Jun 6, 2022. It is now read-only.

Commit

Permalink
Fix Epic importer
Browse files Browse the repository at this point in the history
  • Loading branch information
doZennn committed Dec 2, 2019
1 parent 053df2f commit 47da8f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/importers/Epic.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ class Epic {
this.getEpicPath().then((epicPath) => {
const games = [];
let binFolder;
if (arch === 'ia32') {
if (arch() === 'ia32') {
binFolder = 'Win32';
} else if (arch === 'x64') {
} else if (arch() === 'x64') {
binFolder = 'Win64';
}
const binaryPath = path.join(epicPath, 'Launcher', 'Portal', 'Binaries', binFolder);
Expand Down

0 comments on commit 47da8f1

Please sign in to comment.