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:
Raymond Hill 2020-01-31 13:48:17 -05:00
parent bc6e585b5d
commit 0627fcfb62
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -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('');
} }