mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 03:12:33 +01:00
Fix broken row rendering for non-network-based URL
Reported internally by volunteers. Regression from: - https://github.com/gorhill/uBlock/commit/3a564c199260#diff-fd76b4e8f9d7bfb2e5e01510c9457633L367
This commit is contained in:
parent
bc6e585b5d
commit
0627fcfb62
@ -376,10 +376,12 @@ const parseLogEntry = function(details) {
|
|||||||
// Cell 3
|
// Cell 3
|
||||||
textContent.push(normalizeToStr(entry.docHostname));
|
textContent.push(normalizeToStr(entry.docHostname));
|
||||||
|
|
||||||
// Cell 4
|
// Cell 4: partyness
|
||||||
if ( entry.realm === 'network' ) {
|
if (
|
||||||
// partyness
|
entry.realm === 'network' &&
|
||||||
if ( typeof entry.domain === 'string' && entry.domain !== '' ) {
|
typeof entry.domain === 'string' &&
|
||||||
|
entry.domain !== ''
|
||||||
|
) {
|
||||||
let partyness = '';
|
let partyness = '';
|
||||||
if ( entry.tabDomain !== undefined ) {
|
if ( entry.tabDomain !== undefined ) {
|
||||||
if ( entry.tabId < 0 ) {
|
if ( entry.tabId < 0 ) {
|
||||||
@ -398,7 +400,6 @@ const parseLogEntry = function(details) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
textContent.push(partyness);
|
textContent.push(partyness);
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
textContent.push('');
|
textContent.push('');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user