Unverified Commit 161dde55 authored by Ferhat's avatar Ferhat Committed by GitHub

Fix offline resource loader for serviceworker (#73416)

parent 89acdb03
......@@ -616,7 +616,7 @@ async function downloadOffline() {
}
currentContent[key] = true;
}
for (var resourceKey in Object.keys(RESOURCES)) {
for (var resourceKey of Object.keys(RESOURCES)) {
if (!currentContent[resourceKey]) {
resources.push(resourceKey);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment