* Fix a null reference exception that I introduced
parent
9a17d2b1fd
commit
480377e853
|
@ -390,7 +390,7 @@ namespace OpenSim.Framework.Servers
|
|||
return;
|
||||
}
|
||||
|
||||
if (request.AcceptTypes.Length > 0)
|
||||
if (request.AcceptTypes != null && request.AcceptTypes.Length > 0)
|
||||
{
|
||||
foreach (string strAccept in request.AcceptTypes)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue