From 15c3c7c8ab7e54daa8cd0562d4d38a15546f79b3 Mon Sep 17 00:00:00 2001 From: tophf Date: Mon, 9 Jul 2018 09:08:13 +0300 Subject: [PATCH] fixup 3418ac9c: explicitly set the optional parameter fixes #423 --- background/usercss-helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background/usercss-helper.js b/background/usercss-helper.js index c6835805..f6eb02a6 100644 --- a/background/usercss-helper.js +++ b/background/usercss-helper.js @@ -3,7 +3,7 @@ (() => { - API_METHODS.saveUsercss = save; + API_METHODS.saveUsercss = style => save(style, false); API_METHODS.saveUsercssUnsafe = style => save(style, true); API_METHODS.buildUsercss = build; API_METHODS.installUsercss = install;