Gildas пре 7 година
родитељ
комит
fc8bc081bc
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      lib/single-file/single-file-core.js

+ 1 - 1
lib/single-file/single-file-core.js

@@ -454,7 +454,7 @@ this.SingleFileCore = this.SingleFileCore || (() => {
 			this.doc.querySelectorAll("meta[charset], meta[http-equiv=\"content-type\"]").forEach(element => {
 				const charSetDeclaration = element.content.split(";")[1];
 				if (charSetDeclaration) {
-					const charSet = charSetDeclaration.split("=")[1]
+					const charSet = charSetDeclaration.split("=")[1];
 					if (charSet) {
 						this.charSet = charSet.trim().toLowerCase();
 					}