소스 검색

fix double ";"

Gildas 4 년 전
부모
커밋
3ad0f9548c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      extension/core/content/content-bootstrap.js

+ 1 - 1
extension/core/content/content-bootstrap.js

@@ -97,7 +97,7 @@ function init() {
 		pageAutoSaved = false;
 		previousLocationHref = location.href;
 		browser.runtime.sendMessage({ method: "tabs.init", savedPageDetected: detectSavedPage(document) }).catch(() => { });
-		browser.runtime.sendMessage({ method: "ui.processInit" }).catch(() => { });;
+		browser.runtime.sendMessage({ method: "ui.processInit" }).catch(() => { });
 	}
 }