mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
Fix offline resource loader for serviceworker (#73416)
This commit is contained in:
parent
89acdb030c
commit
161dde55c9
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user