From 8ae4ac47e6f434e7099c54a09a3109788b4bae81 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Fri, 27 May 2016 18:51:42 -0700 Subject: [PATCH] Perf: Temporarily disable dynamic subtitle detection For https://github.com/feross/webtorrent-desktop/pull/511#issuecomment-22119 8555 --- renderer/main.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/renderer/main.js b/renderer/main.js index 5c834024..0e8330b1 100644 --- a/renderer/main.js +++ b/renderer/main.js @@ -976,7 +976,10 @@ function torrentProgress (progressInfo) { torrentSummary.progress = p }) - checkForSubtitles() + // TODO: Find an efficient way to re-enable this line, which allows subtitle + // files which are completed after a video starts to play to be added + // dynamically to the list of subtitles. + // checkForSubtitles() update() }