1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-02 02:14:52 +12:00

this fixes another console error as per #10

This commit is contained in:
gorhill 2014-10-26 01:31:22 -04:00
parent cbb0b8a8f1
commit ceed73dd59
2 changed files with 2 additions and 4 deletions

View file

@ -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: {

View file

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