소스 검색

ensure auto-save is enabled when repeating auto-save

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

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

@@ -43,7 +43,7 @@ this.singlefile.extension.core.content.bootstrap = this.singlefile.extension.cor
 			await autoSavePage();
 			if (options.autoSaveRepeat) {
 				setTimeout(() => {
-					if (!autoSavingPage) {
+					if (autoSaveEnabled && !autoSavingPage) {
 						pageAutoSaved = false;
 						options.autoSaveDelay = 0;
 						onMessage(message);