Details
-
Defect
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
Viewer 2.7.0
-
None
-
https://bitbucket.org/vadim_productengine/storm-1297 changesets 61d29dc86f51, bd04ed520b82
-
Code Review, Product Owner
Description
Note: this jira was split out from STORM-951.
If you click on an object, get a dialog (say, an inventory offer), and then pick Block the entry created in the block list is the owner of the object and the type is "by name".
This is wrong on two counts:
1) The blocked entry should be storing the UUID of the object and displaying its current name. Names can easily be changed by griefer scripts so storing just the name is not enough.
2) The block type should be "object".
Steps to reproduce:
- Rezz an object
- Drop attached script NotecardGiver.lsl into object's Contents
- Create a notecard; the name is not important
- Drop this notecard into object's Contents
- Close build window
- Click on object
- Click on Block in the notification
Block list appears
Observed result: Owner's name of the object is in block list and type is (By name)
Expected result: Name of object is in block list and type is (Object)
Here are some hopefully helpful pointers to whoever fixes this.
1) In llviewermessage.cpp / inventory_task_offer_callback
you need to pass the name of the object, mFromName into LLMute::LLMute
The same might also apply in inventory_offer_callback, which looks to be doing similar work.
2) In inventory_offer_mute_callback
else if(offer && offer->mFromObject)
|
change
type = LLMute::OBJECT;
|
as this is used to mute particles in llmutelist.cpp / LLMuteList::add
Paul ProductEngine worked on this recently and ran into difficulty:
How to get the sender object id for a message of type IM_TASK_INVENTORY_OFFERED (object inventory offer).
I need this to be able to block the sender object.
Rejected code review: https://codereview.secondlife.com/r/303/
Attachments
Issue Links
- is a child of
-
STORM-951 Accidental Self-Muting/Self-Blocking
-
- Closed
-
- is depended on by
-
STORM-976 Object muted by name still displays notification message when clicked
-
- Closed
-
-
STORM-1192 After object was blocked from the offer dialog box it's still possible to block it from context menu
-
- Closed
-