summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-10-21 15:58:57 +0100
committerCarl Hetherington <cth@carlh.net>2012-10-21 15:58:57 +0100
commit6cdd7dc3149d7df921bbf24623d48de195d02673 (patch)
tree570784f9a75204182d7a729c4768f612be23810c /src
parentcc8973de75b9c484decac5f6e13fcba62658b8e6 (diff)
Fix thinko in content setup.
Diffstat (limited to 'src')
-rw-r--r--src/lib/film_state.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/film_state.cc b/src/lib/film_state.cc
index 6ce88f2bb..c8d519d71 100644
--- a/src/lib/film_state.cc
+++ b/src/lib/film_state.cc
@@ -536,7 +536,7 @@ FilmState::set_content (string c)
set_subtitle_streams (d->subtitle_streams ());
set_audio_stream (audio_streams().empty() ? -1 : 0);
set_subtitle_stream (subtitle_streams().empty() ? -1 : 0);
- set_content_digest (md5_digest (content_path ()));
+ set_content_digest (md5_digest (c));
_content = c;
signal_changed (CONTENT);