修复上级播放后未发送redis通知的BUG

This commit is contained in:
lin
2025-11-08 21:55:38 +08:00
parent 869953b08d
commit b2f9492cc8
4 changed files with 28 additions and 10 deletions

View File

@@ -56,7 +56,7 @@ public interface StreamPushMapper {
" <if test='pushing == true' > AND st.pushing=true</if>" +
" <if test='pushing == false' > AND st.pushing=false </if>" +
" <if test='mediaServerId != null' > AND st.media_server_id=#{mediaServerId} </if>" +
" order by st.create_time desc" +
" order by st.pushing desc, st.create_time desc" +
" </script>"})
List<StreamPush> selectAll(@Param("query") String query, @Param("pushing") Boolean pushing, @Param("mediaServerId") String mediaServerId);