Merge pull request #2 from koisi-io/fix3

修复 87c071:合并271分支 的参数遗漏
pull/1559/head
koisi 2024-08-05 19:00:00 +08:00 committed by GitHub
commit fe974ddd20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -694,6 +694,7 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
@Override @Override
public void addPushListItem(String app, String stream, MediaArrivalEvent event) { public void addPushListItem(String app, String stream, MediaArrivalEvent event) {
String key = VideoManagerConstants.PUSH_STREAM_LIST + app + "_" + stream; String key = VideoManagerConstants.PUSH_STREAM_LIST + app + "_" + stream;
event.getHookParam().setSeverId(userSetting.getServerId());
redisTemplate.opsForValue().set(key, event.getHookParam()); redisTemplate.opsForValue().set(key, event.getHookParam());
} }