fix regex in folder opener

This commit is contained in:
SpikeHD 2022-04-30 01:07:47 -07:00
parent df6a68ddde
commit dbfc52a270

View File

@ -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)
}