mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
update xmlrpc.dll with a fix for empty base64 case
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user