aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/InstantMessage/OfflineMessageModule.cs
diff options
context:
space:
mode:
authorMelanie2011-05-13 12:03:16 +0100
committerMelanie2011-05-13 12:03:16 +0100
commit59d8588ae130065b80028d2168c3e2ea9d70c7cc (patch)
treee42a384c566bf44a4e9b8712fc4a0e76f3e992fc /OpenSim/Region/CoreModules/Avatar/InstantMessage/OfflineMessageModule.cs
parentFix the cert validation handler so that it will not block other parts of (diff)
parentHopefully this fixes offline messages. The problem was: the server is not set... (diff)
downloadopensim-SC_OLD-59d8588ae130065b80028d2168c3e2ea9d70c7cc.zip
opensim-SC_OLD-59d8588ae130065b80028d2168c3e2ea9d70c7cc.tar.gz
opensim-SC_OLD-59d8588ae130065b80028d2168c3e2ea9d70c7cc.tar.bz2
opensim-SC_OLD-59d8588ae130065b80028d2168c3e2ea9d70c7cc.tar.xz
Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/InstantMessage/OfflineMessageModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/InstantMessage/OfflineMessageModule.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/InstantMessage/OfflineMessageModule.cs b/OpenSim/Region/CoreModules/Avatar/InstantMessage/OfflineMessageModule.cs
index 919ea33..321b38b 100644
--- a/OpenSim/Region/CoreModules/Avatar/InstantMessage/OfflineMessageModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/InstantMessage/OfflineMessageModule.cs
@@ -178,6 +178,9 @@ namespace OpenSim.Region.CoreModules.Avatar.InstantMessage
178 List<GridInstantMessage> msglist = SynchronousRestObjectPoster.BeginPostObject<UUID, List<GridInstantMessage>>( 178 List<GridInstantMessage> msglist = SynchronousRestObjectPoster.BeginPostObject<UUID, List<GridInstantMessage>>(
179 "POST", m_RestURL + "/RetrieveMessages/", client.AgentId); 179 "POST", m_RestURL + "/RetrieveMessages/", client.AgentId);
180 180
181 if (msglist == null)
182 m_log.WarnFormat("[OFFLINE MESSAGING]: WARNING null message list.");
183
181 foreach (GridInstantMessage im in msglist) 184 foreach (GridInstantMessage im in msglist)
182 { 185 {
183 // client.SendInstantMessage(im); 186 // client.SendInstantMessage(im);