CloneServerStatItem 时检查indexId和toIndexId是否相同 (#6478)

This commit is contained in:
Little丶Dreams
2025-01-11 14:44:09 +08:00
committed by GitHub
parent 8f3e0dbd82
commit 364a24c580

View File

@@ -72,6 +72,11 @@
return;
}
if(indexId == toIndexId)
{
return;
}
var stat = _lstServerStat.FirstOrDefault(t => t.IndexId == indexId);
if (stat == null)
{