diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-12-05 22:39:50 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-12-05 22:39:50 +0000 |
| commit | 34e7ae593806e459762e9efe32fdbf9c3a26f40b (patch) | |
| tree | 3c17a3866fe3709e11f6d063cda15c8097a9eeed /src/util.cc | |
| parent | 414f1d390276ac5508d413408306910b9d1388d3 (diff) | |
Accept any old case for DCP content kinds.
Diffstat (limited to 'src/util.cc')
| -rw-r--r-- | src/util.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util.cc b/src/util.cc index 3508e64f..cb58694a 100644 --- a/src/util.cc +++ b/src/util.cc @@ -161,13 +161,13 @@ libdcp::content_kind_to_string (ContentKind kind) libdcp::ContentKind libdcp::content_kind_from_string (string type) { - /* XXX: should probably just convert type to lower-case and have done with it */ + transform (type.begin(), type.end(), type.begin(), ::tolower); if (type == "feature") { return FEATURE; } else if (type == "short") { return SHORT; - } else if (type == "trailer" || type == "Trailer") { + } else if (type == "trailer") { return TRAILER; } else if (type == "test") { return TEST; @@ -175,7 +175,7 @@ libdcp::content_kind_from_string (string type) return TRANSITIONAL; } else if (type == "rating") { return RATING; - } else if (type == "teaser" || type == "Teaser") { + } else if (type == "teaser") { return TEASER; } else if (type == "policy") { return POLICY; |
