sw.js: fix match against undefined pathname

features-override
Alex Gleason 2021-11-15 13:03:30 -06:00
rodzic bb1275e51a
commit c356597523
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -104,7 +104,11 @@ module.exports = merge(sharedConfig, {
];
const isBackendRoute = ({ pathname }) => {
return backendRoutes.some(pathname.startsWith);
if (pathname) {
return backendRoutes.some(pathname.startsWith);
} else {
return false;
}
};
return isBackendRoute(requestUrl) && requestUrl;