Skip to content

Commit

Permalink
fix(android): avoid duplicated declaration error on consecutive xml g…
Browse files Browse the repository at this point in the history
…eneration.
  • Loading branch information
asafkorem committed Oct 19, 2024
1 parent a41ea1e commit 73ec6ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import kotlin.coroutines.resume


private const val GET_HTML_SCRIPT = """
(function() {
const blacklistedTags = ['script', 'style', 'head', 'meta'];
const blackListedTagsSelector = blacklistedTags.join(',');
(function() {
// Clone the entire document
var clonedDoc = document.documentElement.cloneNode(true);
Expand Down

0 comments on commit 73ec6ad

Please sign in to comment.