diff options
author | diva | 2009-02-01 02:20:57 +0000 |
---|---|---|
committer | diva | 2009-02-01 02:20:57 +0000 |
commit | 3bd0df18b76de72f678bd656d1f87f15079e94bb (patch) | |
tree | e3c2c8e464972a6c57c0ff7d2ca238386c5f1cbb /OpenSim/Region/Communications | |
parent | Check for the 4096 limitation in dynamic region hyperlinks. (diff) | |
download | opensim-SC_OLD-3bd0df18b76de72f678bd656d1f87f15079e94bb.zip opensim-SC_OLD-3bd0df18b76de72f678bd656d1f87f15079e94bb.tar.gz opensim-SC_OLD-3bd0df18b76de72f678bd656d1f87f15079e94bb.tar.bz2 opensim-SC_OLD-3bd0df18b76de72f678bd656d1f87f15079e94bb.tar.xz |
More on dynamic hyperlinks. Making the 4096 check (deregistration of region) work in grid mode.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs b/OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs index 0448692..b64a070 100644 --- a/OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs +++ b/OpenSim/Region/Communications/Hypergrid/HGGridServicesGridMode.cs | |||
@@ -96,9 +96,9 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
96 | 96 | ||
97 | public override bool DeregisterRegion(RegionInfo regionInfo) | 97 | public override bool DeregisterRegion(RegionInfo regionInfo) |
98 | { | 98 | { |
99 | bool success = m_remoteBackend.DeregisterRegion(regionInfo); | 99 | bool success = base.DeregisterRegion(regionInfo); |
100 | if (!success) | 100 | if (!success) |
101 | success = base.DeregisterRegion(regionInfo); | 101 | success = m_remoteBackend.DeregisterRegion(regionInfo); |
102 | return success; | 102 | return success; |
103 | } | 103 | } |
104 | 104 | ||