Replaced innerHTML with textContent to remove warning of Mozillas add-on validation

This commit is contained in:
nobody 2020-03-08 16:57:20 +01:00
parent 48283328c7
commit 07d3bee935
No known key found for this signature in database
GPG Key ID: AB5145CF05BFE119
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "LocalCDN (fork from Decentraleyes)",
"version": "2.1.1",
"version": "2.1.2",
"author": "nobody",

View File

@ -58,7 +58,7 @@ options._renderOptionsPanel = function () {
options._renderLocaleNotice();
}
document.getElementById('last-mapping-update').innerHTML = lastMappingUpdate;
document.getElementById('last-mapping-update').textContent = lastMappingUpdate;
};
options._renderBlockMissingNotice = function () {