We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15232c8 commit b2b2d5cCopy full SHA for b2b2d5c
1 file changed
src/app/service/service_worker/index.ts
@@ -246,7 +246,9 @@ export default class ServiceWorkerManager {
246
// 如该网域没有任何有效脚本则忽略
247
const domain = newDomain;
248
const anyOpened = await script.openBatchUpdatePage({
249
- q: domain ? `site=${domain}` : "",
+ // https://github.com/scriptscat/scriptcat/issues/1087
250
+ // 关于 autoclose,日后再检讨 UI/UX 设计
251
+ q: domain ? `autoclose=30&site=${domain}` : "autoclose=30",
252
dontCheckNow: true,
253
});
254
if (anyOpened) {
0 commit comments