修复切换地图坐标系时未更新矢量瓦片坐标系

This commit is contained in:
lin
2025-11-13 16:17:29 +08:00
parent 7704c3a7fb
commit ec7567c2cd
4 changed files with 10 additions and 8 deletions

View File

@@ -474,7 +474,7 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
public void removePushListItem(String app, String stream, String mediaServerId) {
String key = VideoManagerConstants.PUSH_STREAM_LIST + app + "_" + stream;
MediaInfo param = (MediaInfo)redisTemplate.opsForValue().get(key);
if (param != null) {
if (param != null && userSetting.getServerId().equals(param.getServerId())) {
redisTemplate.delete(key);
}
}