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

Commit

Permalink
fix regex in folder opener
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed Apr 30, 2022
1 parent df6a68d commit dbfc52a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async function proxyIsInstalled() {

async function openGameFolder() {
const config = await getCfg()
const folder = config.gameexe.match(/.*\\/g, '')[0]
const folder = config.gameexe.match(/.*\//g, '')[0]

openInExplorer(folder)
}
Expand Down

0 comments on commit dbfc52a

Please sign in to comment.