summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/content_factory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/content_factory.cc b/src/lib/content_factory.cc
index 38112b968..d3905e4e7 100644
--- a/src/lib/content_factory.cc
+++ b/src/lib/content_factory.cc
@@ -164,7 +164,7 @@ content_factory (shared_ptr<const Film> film, boost::filesystem::path path)
if (valid_image_file (path)) {
content.reset (new ImageContent (film, path));
- } else if (ext == ".srt" || ext == ".ssa") {
+ } else if (ext == ".srt" || ext == ".ssa" || ext == ".ass") {
content.reset (new TextSubtitleContent (film, path));
} else if (ext == ".xml") {
content.reset (new DCPSubtitleContent (film, path));