Fix offline IMs here too.

This commit is contained in:
Diva Canto
2011-05-12 21:09:08 -07:00
parent d0673d7620
commit e89b77423f

View File

@@ -944,7 +944,7 @@ namespace OpenSim.Framework
{
using (WebResponse resp = request.GetResponse())
{
if (resp.ContentLength > 0)
if (resp.ContentLength != 0)
{
Stream respStream = resp.GetResponseStream();
XmlSerializer deserializer = new XmlSerializer(typeof(TResponse));