minor: In "show client stats" command, properly handle the case where a client has made no AgentUpdate requests (as is the case with agents that have only even been child) rather than throwing an exception
parent
a9dde81753
commit
548abb3b47
|
@ -603,7 +603,9 @@ namespace OpenSim.Region.OptionalModules.UDP.Linden
|
||||||
string.Format(
|
string.Format(
|
||||||
"{0} ({1:0.00}%)",
|
"{0} ({1:0.00}%)",
|
||||||
llClient.TotalAgentUpdates,
|
llClient.TotalAgentUpdates,
|
||||||
(float)cinfo.SyncRequests["AgentUpdate"] / llClient.TotalAgentUpdates * 100));
|
cinfo.SyncRequests.ContainsKey("AgentUpdate")
|
||||||
|
? (float)cinfo.SyncRequests["AgentUpdate"] / llClient.TotalAgentUpdates * 100
|
||||||
|
: 0));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue