diff options
author | John Stebbins <[email protected]> | 2019-08-26 14:53:31 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-08-26 14:53:31 -0700 |
commit | 52eb74c60482e792cf2f2fe7e968b1f35fb4f27e (patch) | |
tree | ec16d2b28e9655b591d8ba3aa8586e931f85a046 /libhb | |
parent | ffd4524c845ee4572568e80a30fda6bd583c88f4 (diff) |
hb_json: fix title dict format string
missing format specifier results in LFECount getting dropped from audio
track settings
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/hb_json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/hb_json.c b/libhb/hb_json.c index 3cb353a40..9f5286d7f 100644 --- a/libhb/hb_json.c +++ b/libhb/hb_json.c @@ -391,7 +391,7 @@ static hb_dict_t* hb_title_to_dict_internal( hb_title_t *title ) attributes = hb_audio_attributes_to_dict(audio->config.lang.attributes); audio_dict = json_pack_ex(&error, 0, - "{s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o}", + "{s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o}", "Description", hb_value_string(audio->config.lang.description), "Language", hb_value_string(audio->config.lang.simple), "LanguageCode", hb_value_string(audio->config.lang.iso639_2), |