forked from NanoAdblocker/NanoCore2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20_1_header_parsing.patch
41 lines (40 loc) · 1.3 KB
/
20_1_header_parsing.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
diff --git a/src/js/storage.js b/src/js/storage.js
index 04bae91b..272127b0 100644
--- a/src/js/storage.js
+++ b/src/js/storage.js
@@ -764,15 +764,33 @@ self.addEventListener('hiddenSettingsChanged', ( ) => {
}
// Extract update frequency information
const matches = head.match(/(?:^|\n)(?:!|# )[\t ]*Expires[\t ]*:[\t ]*(\d+)[\t ]*(h)?/i);
+ let v;
if ( matches !== null ) {
- let v = Math.max(parseInt(matches[1], 10), 1);
+ v = parseInt(matches[1], 10);
if ( matches[2] !== undefined ) {
v = Math.ceil(v / 24);
}
- if ( v !== listEntry.updateAfter ) {
- this.assets.registerAssetSource(assetKey, { updateAfter: v });
+ }
+
+ if ( typeof v !== 'number' ) {
+ if ( typeof listEntry.nanoUpdateAfterDefault === 'number' ) {
+ v = listEntry.nanoUpdateAfterDefault;
+ } else {
+ // IMPORTANT! Must update this value if default update period is
+ // changed
+ v = 3;
}
}
+
+ if ( v < 1 ) {
+ v = 1;
+ } else if ( v > 60 ) {
+ v = 60;
+ }
+
+ if ( v !== listEntry.updateAfter ) {
+ this.assets.registerAssetSource(assetKey, { updateAfter: v });
+ }
};
/******************************************************************************/