diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Communications/Capabilities/CapsUtil.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs b/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs index 874a27f..f804abb 100644 --- a/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs +++ b/OpenSim/Framework/Communications/Capabilities/CapsUtil.cs | |||
@@ -52,7 +52,10 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
52 | { | 52 | { |
53 | UUID caps = UUID.Random(); | 53 | UUID caps = UUID.Random(); |
54 | string capsPath = caps.ToString(); | 54 | string capsPath = caps.ToString(); |
55 | capsPath = capsPath.Remove(capsPath.Length - 4, 4); | 55 | // I'm commenting this, rather than delete, to keep as historical record. |
56 | // The caps seed is now a full UUID string that gets added four more digits | ||
57 | // for producing certain CAPs URLs in OpenSim | ||
58 | //capsPath = capsPath.Remove(capsPath.Length - 4, 4); | ||
56 | return capsPath; | 59 | return capsPath; |
57 | } | 60 | } |
58 | } | 61 | } |