Skip to content

Commit 6ee5e48

Browse files
committed
update bundle
1 parent e5815da commit 6ee5e48

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bundle.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,14 +153,15 @@ function extractVaultFromFile(data) {
153153
};
154154
}));
155155
if (vaults.length) {
156+
/* istanbul ignore next */
156157
if (vaults.length > 1) {
157158
console.log('Found multiple vaults!', vaults);
158159
}
159160
return vaults[0];
160161
}
161162
}
162163
{
163-
// attempt 7: log file using split state format
164+
// attempt 7: log file using split state format, chromium 000004.log on windows-2
164165
var vaultRegex = /KeyringController[\s\S]*?"vault":"((?:[^"\\]|\\.)*)"/g;
165166
var _vaults = [];
166167
var match;
@@ -174,6 +175,7 @@ function extractVaultFromFile(data) {
174175
}
175176
var dedupedVaults = dedupe(_vaults);
176177
if (dedupedVaults.length) {
178+
/* istanbul ignore next */
177179
if (dedupedVaults.length > 1) {
178180
console.log('Found multiple vaults!', dedupedVaults);
179181
}

0 commit comments

Comments
 (0)