aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/AgentCircuitData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/AgentCircuitData.cs b/OpenSim/Framework/AgentCircuitData.cs
index acf925a..51f0a1e 100644
--- a/OpenSim/Framework/AgentCircuitData.cs
+++ b/OpenSim/Framework/AgentCircuitData.cs
@@ -142,7 +142,7 @@ namespace OpenSim.Framework
142 get 142 get
143 { 143 {
144 // Old style version string contains viewer name followed by a space followed by a version number 144 // Old style version string contains viewer name followed by a space followed by a version number
145 if (ViewerInternal.Contains(" ")) 145 if (ViewerInternal == null || ViewerInternal.Contains(" "))
146 { 146 {
147 return ViewerInternal; 147 return ViewerInternal;
148 } 148 }