1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 23:42:28 +02:00

Fix typo in string template code

Related commit:
- feaa338678
This commit is contained in:
Raymond Hill 2022-11-20 10:17:05 -05:00
parent 3faca4caab
commit fa216a43e4
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -239,7 +239,7 @@ const renderDOMIncremental = function(response) {
} }
// Add node as sibling // Add node as sibling
if ( entry.what === 1 && entry.l ) { if ( entry.what === 1 && entry.l ) {
previous = qs$(`#{entry.l}`); previous = qs$(`#${entry.l}`);
// This should not happen // This should not happen
if ( previous === null ) { if ( previous === null ) {
// throw new Error('No left sibling!?'); // throw new Error('No left sibling!?');