From b861f39b9525a09200175fa35d20a745fef4daea Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 2 Mar 2016 19:53:12 -0800 Subject: [PATCH] chromecast: show WebTorrent before torrent name --- main/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/index.js b/main/index.js index ddcb6f5d..e22224d6 100644 --- a/main/index.js +++ b/main/index.js @@ -225,7 +225,7 @@ function closePlayer () { function openChromecast (torrent) { startServer(torrent, function () { console.log(state.server.networkURL) - state.chromecast.play(state.server.networkURL, { title: torrent.name }) + state.chromecast.play(state.server.networkURL, { title: 'WebTorrent — ' + torrent.name }) state.chromecast.on('error', function (err) { err.message = 'Chromecast: ' + err.message onError(err)