diff options
Diffstat (limited to 'OpenSim/ApplicationPlugins/Rest/Inventory/Rest.cs')
-rw-r--r-- | OpenSim/ApplicationPlugins/Rest/Inventory/Rest.cs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/Rest.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/Rest.cs index 7db705e..9755e73 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/Rest.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/Rest.cs | |||
@@ -35,7 +35,7 @@ using Nini.Config; | |||
35 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
36 | using OpenSim.Framework.Communications; | 36 | using OpenSim.Framework.Communications; |
37 | using OpenSim.Services.Interfaces; | 37 | using OpenSim.Services.Interfaces; |
38 | using IUserService = OpenSim.Framework.Communications.IUserService; | 38 | using IAvatarService = OpenSim.Services.Interfaces.IAvatarService; |
39 | 39 | ||
40 | namespace OpenSim.ApplicationPlugins.Rest.Inventory | 40 | namespace OpenSim.ApplicationPlugins.Rest.Inventory |
41 | { | 41 | { |
@@ -92,24 +92,24 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory | |||
92 | /// initializes. | 92 | /// initializes. |
93 | /// </summary> | 93 | /// </summary> |
94 | 94 | ||
95 | internal static CommunicationsManager Comms | 95 | internal static IInventoryService InventoryServices |
96 | { | 96 | { |
97 | get { return main.CommunicationsManager; } | 97 | get { return main.SceneManager.CurrentOrFirstScene.InventoryService; } |
98 | } | 98 | } |
99 | 99 | ||
100 | internal static IInventoryService InventoryServices | 100 | internal static IUserAccountService UserServices |
101 | { | 101 | { |
102 | get { return main.SceneManager.CurrentOrFirstScene.InventoryService; } | 102 | get { return main.SceneManager.CurrentOrFirstScene.UserAccountService; } |
103 | } | 103 | } |
104 | 104 | ||
105 | internal static IUserService UserServices | 105 | internal static IAuthenticationService AuthServices |
106 | { | 106 | { |
107 | get { return Comms.UserService; } | 107 | get { return main.SceneManager.CurrentOrFirstScene.AuthenticationService; } |
108 | } | 108 | } |
109 | 109 | ||
110 | internal static IAvatarService AvatarServices | 110 | internal static IAvatarService AvatarServices |
111 | { | 111 | { |
112 | get { return Comms.AvatarService; } | 112 | get { return main.SceneManager.CurrentOrFirstScene.AvatarService; } |
113 | } | 113 | } |
114 | 114 | ||
115 | internal static IAssetService AssetServices | 115 | internal static IAssetService AssetServices |