diff options
Diffstat (limited to 'OpenSim/ApplicationPlugins')
-rw-r--r-- | OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index 93a6915..25ae3f1 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | |||
@@ -709,6 +709,14 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
709 | // ok, client wants us to use an explicit UUID | 709 | // ok, client wants us to use an explicit UUID |
710 | // regardless of what the avatar name provided | 710 | // regardless of what the avatar name provided |
711 | userID = new UUID((string) requestData["estate_owner_uuid"]); | 711 | userID = new UUID((string) requestData["estate_owner_uuid"]); |
712 | |||
713 | // Check that the specified user exists | ||
714 | Scene currentOrFirst = m_application.SceneManager.CurrentOrFirstScene; | ||
715 | IUserAccountService accountService = currentOrFirst.UserAccountService; | ||
716 | UserAccount user = accountService.GetUserAccount(currentOrFirst.RegionInfo.ScopeID, userID); | ||
717 | |||
718 | if (user == null) | ||
719 | throw new Exception("Specified user was not found."); | ||
712 | } | 720 | } |
713 | else if (requestData.ContainsKey("estate_owner_first") & requestData.ContainsKey("estate_owner_last")) | 721 | else if (requestData.ContainsKey("estate_owner_first") & requestData.ContainsKey("estate_owner_last")) |
714 | { | 722 | { |
@@ -720,6 +728,11 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
720 | IUserAccountService accountService = currentOrFirst.UserAccountService; | 728 | IUserAccountService accountService = currentOrFirst.UserAccountService; |
721 | UserAccount user = accountService.GetUserAccount(currentOrFirst.RegionInfo.ScopeID, | 729 | UserAccount user = accountService.GetUserAccount(currentOrFirst.RegionInfo.ScopeID, |
722 | ownerFirst, ownerLast); | 730 | ownerFirst, ownerLast); |
731 | |||
732 | // Check that the specified user exists | ||
733 | if (user == null) | ||
734 | throw new Exception("Specified user was not found."); | ||
735 | |||
723 | userID = user.PrincipalID; | 736 | userID = user.PrincipalID; |
724 | } | 737 | } |
725 | else | 738 | else |