You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: plugins/optimization-detective/detect.js
+24-24
Original file line number
Diff line number
Diff line change
@@ -161,15 +161,8 @@ async function getAlreadySubmittedSessionStorageKey(
161
161
currentUrl,
162
162
urlMetricGroupStatus
163
163
){
164
-
// Check if crypto.subtle is available.
165
164
if(!window.crypto||!window.crypto.subtle){
166
-
// eslint-disable-next-line no-console
167
-
console.warn(
168
-
'[Optimization Detective] Web Crypto API is not available. This API is only available in secure contexts (HTTPS). Detection cannot proceed. If you are testing locally, ensure you use HTTPS or run on localhost.'
169
-
);
170
-
thrownewError(
171
-
'Web Crypto API is unavailable in this context. Try using HTTPS or localhost.'
172
-
);
165
+
thrownewError('Web Crypto API is unavailable');
173
166
}
174
167
175
168
constmessage=[
@@ -402,35 +395,42 @@ export default async function detect( {
402
395
return;
403
396
}
404
397
398
+
// Abort if the client already submitted a URL Metric for this URL and viewport group.
405
399
letalreadySubmittedSessionStorageKey;
406
400
try{
407
-
// Abort if the client already submitted a URL Metric for this URL and viewport group.
if(err.message==='Web Crypto API is unavailable'){
409
+
error(
410
+
'Unable to create session storage key: Web Crypto API is not available. This API is only available in secure contexts (HTTPS). Detection cannot proceed. If you are testing locally, ensure you use HTTPS or run on localhost.'
0 commit comments