Skip to content

Commit b2388e4

Browse files
authored
Merge pull request #1417 from MeilCli/update/action
update actions
2 parents e294ac8 + 39bfbe1 commit b2388e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9703,7 +9703,7 @@ function save(namespaces) {
97039703
function load() {
97049704
let r;
97059705
try {
9706-
r = exports.storage.getItem('debug');
9706+
r = exports.storage.getItem('debug') || exports.storage.getItem('DEBUG') ;
97079707
} catch (error) {
97089708
// Swallow
97099709
// XXX (@Qix-) should we be logging these?
@@ -9931,7 +9931,7 @@ function setup(env) {
99319931

99329932
const split = (typeof namespaces === 'string' ? namespaces : '')
99339933
.trim()
9934-
.replace(' ', ',')
9934+
.replace(/\s+/g, ',')
99359935
.split(',')
99369936
.filter(Boolean);
99379937

0 commit comments

Comments
 (0)