File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments