From 4d4187852a0ddc2fbe470db750bc664fa3b9be19 Mon Sep 17 00:00:00 2001 From: R-L-T-Y Date: Wed, 15 Jul 2020 20:02:54 +0800 Subject: [PATCH] you don't need to confirm reannounce it's non-atomic --- src/components/Torrents.vue | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/components/Torrents.vue b/src/components/Torrents.vue index 1b10c3d..e17c6ce 100644 --- a/src/components/Torrents.vue +++ b/src/components/Torrents.vue @@ -488,15 +488,6 @@ export default class Torrents extends Vue { if (!this.hasSelected) { this.selectedRows = this.allTorrents; } - const v = await this.asyncShowDialog({ - title: 'Reannounce Torrents', - text: 'Are you sure want to reannounce torrents?', - type: DialogType.OkCancel, - }); - - if (!v) { - return; - } await api.reannounceTorrents(this.selectedHashes);