From ba071cf5a86cf0758235eff68aadc7075a4d44bc Mon Sep 17 00:00:00 2001 From: Jia Hao Date: Tue, 23 Feb 2016 17:21:09 +0800 Subject: [PATCH] Fix escaped string --- app/src/helpers/inferFlash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/helpers/inferFlash.js b/app/src/helpers/inferFlash.js index 9cda7b9..fac26a6 100644 --- a/app/src/helpers/inferFlash.js +++ b/app/src/helpers/inferFlash.js @@ -62,7 +62,7 @@ function linuxMatch() { } function windowsMatch() { - return findSync(/pepflashplayer\.dll/, 'C:\Program Files (x86)\Google\Chrome')[0]; + return findSync(/pepflashplayer\.dll/, 'C:\\Program Files (x86)\\Google\\Chrome')[0]; } function darwinMatch() {