Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark committed Dec 3, 2024
1 parent 043208f commit 7aee39d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/computed/network-analysis.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ class NetworkAnalysis {
*/
static async compute_(devtoolsLog, context) {
const records = await NetworkRecords.request(devtoolsLog, context);
const analyis = Lantern.Core.NetworkAnalyzer.analyze(records);
if (!analyis) {
const analysis = Lantern.Core.NetworkAnalyzer.analyze(records);
if (!analysis) {
throw new Error('Could not compute network analysis');
}
return analyis;
return analysis;
}
}

Expand Down

0 comments on commit 7aee39d

Please sign in to comment.