浏览代码

removed obsolete TODO

Gildas 7 年之前
父节点
当前提交
1155b0690c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      extension/core/content/content.js

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

@@ -82,7 +82,7 @@ this.singlefile.top = this.singlefile.top || (() => {
 		}
 		const date = new Date();
 		page.filename = page.title + (options.appendSaveDate ? " (" + date.toISOString().split("T")[0] + " " + date.toLocaleTimeString() + ")" : "") + ".html";
-		page.url = URL.createObjectURL(new Blob([page.content], { type: "text/html" })); // TODO: revoke after download
+		page.url = URL.createObjectURL(new Blob([page.content], { type: "text/html" }));
 		if (options.shadowEnabled) {
 			singlefile.ui.end();
 		}