rtmp-services: Fix supported audio codecs in rtmp_common

This commit is contained in:
tytan652
2023-03-25 10:03:22 +01:00
committed by Rodney
parent ddee7ff6fe
commit 19acb8cc5f
+1 -1
View File
@@ -1008,7 +1008,7 @@ static const char **rtmp_common_get_supported_audio_codecs(void *data)
json_t *json_audio_codecs =
json_object_get(json_service, "supported audio codecs");
if (json_is_array(json_audio_codecs)) {
if (!json_is_array(json_audio_codecs)) {
goto fail;
}