1
0
mirror of https://codeberg.org/nobody/LocalCDN.git synced 2025-02-18 04:40:58 +01:00

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, "manifest_version": 2,
"name": "LocalCDN (fork from Decentraleyes)", "name": "LocalCDN (fork from Decentraleyes)",
"version": "2.1.1", "version": "2.1.2",
"author": "nobody", "author": "nobody",

View File

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