update xmlrpc.dll with a fix for empty base64 case

This commit is contained in:
UbitUmarov
2020-12-01 13:09:53 +00:00
parent 4f4a48cf60
commit ff1302f8c8
4 changed files with 20 additions and 25 deletions

View File

@@ -149,11 +149,9 @@ namespace OpenSim.Services.PresenceService
{
try
{
bool inCache = false;
if(!BySessionCache.TryGetValue(sessionID, out PresenceData presence))
bool inCache = BySessionCache.TryGetValue(sessionID, out PresenceData presence);
if(!inCache)
presence = m_Database.Get(sessionID);
else
inCache = true;
bool success;
if (presence == null)