mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 01:01:55 +01:00
Add another key to config diff whitelist
This commit is contained in:
parent
bf8003891c
commit
8c185d4b5e
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ function partialDeepEquals (actual, expected, logger) {
|
|||
// loop over key, value of expected
|
||||
let failed = false;
|
||||
for (const [ key, value ] of Object.entries(expected)) {
|
||||
if (key === "serverAddress" || key === "testingServerAddress" || key === "serverAddressComment") continue
|
||||
if (key === "serverAddress" || key === "testingServerAddress" || key === "serverAddressComment" || key === "freeChapterAccess") continue
|
||||
// if value is object, recurse
|
||||
const actualValue = actual?.[key]
|
||||
if (typeof value !== "string" && Array.isArray(value)) {
|
||||
|
|
Loading…
Reference in a new issue