operator bool on Time is a really bad idea; removed it and fixed lots of bugs.
[dcpomatic.git] / src / lib / image_content.cc
index db02c6059ed494f553df16c9ea658255b833569d..6a37f30676472c51ec24866179ce5209cc5c2ec8 100644 (file)
@@ -133,7 +133,7 @@ ImageContent::identifier () const
 {
        stringstream s;
        s << VideoContent::identifier ();
-       s << "_" << video_length();
+       s << "_" << video_length().get();
        return s.str ();
 }