[BDTheme] Fix error caused by last commit

This commit is contained in:
Ducko 2021-05-05 18:13:59 +01:00 committed by フズキ
parent f2b397fdbc
commit 0c62c9b764
No known key found for this signature in database
GPG Key ID: E06450E46F83376C
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ export default (themePath, repo) => {
let match;
while ((match = metaReg.exec(content)) !== null) {
const [_, key, value] = match;
let [_, key, value] = match;
if (key === 'import') break;
value = value.trim();