We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c797c71 commit 9694335Copy full SHA for 9694335
ngx_http_flv_live_module.c
@@ -336,11 +336,11 @@ ngx_http_flv_live_init_handlers(ngx_cycle_t *cycle)
336
h = ngx_array_push(&cmcf->events[NGX_HTTP_FLV_LIVE_REQUEST]);
337
*h = ngx_http_flv_live_request;
338
339
- next_play = ngx_rtmp_play;
340
- ngx_rtmp_play = ngx_http_flv_live_play;
+ next_play = ngx_http_flv_live_play;
+ next_close_stream = ngx_http_flv_live_close_stream;
341
342
- next_close_stream = ngx_rtmp_close_stream;
343
- ngx_rtmp_close_stream = ngx_http_flv_live_close_stream;
+ http_flv_live_next_play = NULL;
+ http_flv_live_next_close_stream = NULL;
344
345
return NGX_OK;
346
}
0 commit comments