diff options
author | Melanie | 2013-04-25 21:35:18 +0100 |
---|---|---|
committer | Melanie | 2013-04-25 21:35:18 +0100 |
commit | 03c9d8ae4fa9a47cda66814177071c258f5b4437 (patch) | |
tree | 251cada34803e34121b3d45eeaeb95d46206d13c /OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |
parent | Change copyright notice on DynamicMenuModule to proper BSD (diff) | |
download | opensim-SC_OLD-03c9d8ae4fa9a47cda66814177071c258f5b4437.zip opensim-SC_OLD-03c9d8ae4fa9a47cda66814177071c258f5b4437.tar.gz opensim-SC_OLD-03c9d8ae4fa9a47cda66814177071c258f5b4437.tar.bz2 opensim-SC_OLD-03c9d8ae4fa9a47cda66814177071c258f5b4437.tar.xz |
Change EconomyDataRequest signature to use an IClientAPI rather than UUID. This is needed because recent LL viewer codebases call this earlier in login when the client is not yet established in the sim and can't be found by UUID.
Sending the reply requires having the IClientAPI.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 1eb953c..bede379 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -9682,7 +9682,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
9682 | EconomyDataRequest handlerEconomoyDataRequest = OnEconomyDataRequest; | 9682 | EconomyDataRequest handlerEconomoyDataRequest = OnEconomyDataRequest; |
9683 | if (handlerEconomoyDataRequest != null) | 9683 | if (handlerEconomoyDataRequest != null) |
9684 | { | 9684 | { |
9685 | handlerEconomoyDataRequest(AgentId); | 9685 | handlerEconomoyDataRequest(this); |
9686 | } | 9686 | } |
9687 | return true; | 9687 | return true; |
9688 | } | 9688 | } |