Browse Source

this fixes another console error as per #10

pull/2/head
gorhill 10 years ago
parent
commit
ceed73dd59
  1. 1
      src/js/background.js
  2. 5
      src/js/storage.js

1
src/js/background.js

@ -85,6 +85,7 @@ return {
firstUpdateAfter: 11 * oneMinute,
nextUpdateAfter: 11 * oneHour,
projectServerRoot: 'https://raw.githubusercontent.com/gorhill/umatrix/master/',
pslPath: 'assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat',
// permanent hosts files
permanentHostsFiles: {

5
src/js/storage.js

@ -355,10 +355,7 @@
}
callback();
};
this.assets.get(
'assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat',
applyPublicSuffixList
);
this.assets.get(this.pslPath, applyPublicSuffixList);
};
/******************************************************************************/

Loading…
Cancel
Save