ServiceWorker: p --> path

This commit is contained in:
Alex Gleason
2022-06-28 15:18:05 -05:00
parent 4b1c5eb0e8
commit 0536f1e43a

View File

@ -114,7 +114,7 @@ module.exports = merge(sharedConfig, {
];
if (pathname) {
return backendRoutes.some(p => pathname.startsWith(p));
return backendRoutes.some(path => pathname.startsWith(path));
} else {
return false;
}