diff --git a/src/renderer/controllers/torrent-list-controller.js b/src/renderer/controllers/torrent-list-controller.js index 5d8be0a0..42dca1c2 100644 --- a/src/renderer/controllers/torrent-list-controller.js +++ b/src/renderer/controllers/torrent-list-controller.js @@ -220,7 +220,8 @@ module.exports = class TorrentListController { menu.append(new electron.remote.MenuItem({ label: 'Save Torrent File As...', - click: () => dispatch('saveTorrentFileAs', torrentSummary.torrentKey) + click: () => dispatch('saveTorrentFileAs', torrentSummary.torrentKey), + enabled: typeof torrentSummary.torrentFileName !== 'undefined' })) menu.popup(electron.remote.getCurrentWindow())