1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00
This commit is contained in:
gorhill 2015-02-24 18:29:58 -05:00
parent a9a4c739a1
commit 1993b20e19

View File

@ -333,6 +333,14 @@
var onRawListLoaded = function(details) {
if ( details.content !== '' ) {
var listMeta = µb.remoteBlacklists[path];
if ( listMeta && listMeta.title === '' ) {
var matches = details.content.slice(0, 1024).match(/(?:^|\n)!\s*Title:([^\n]+)/i);
if ( matches !== null ) {
listMeta.title = matches[1].trim();
}
}
//console.debug('µBlock.getCompiledFilterList/onRawListLoaded: compiling "%s"', path);
details.content = µb.compileFilters(details.content);
µb.assets.put(compiledPath, details.content);