- fixed : "Remote Object" inspector isn't passed any parameters for object IMs
-> query string is constructed but was never appended to the "objectim" app URL
-> yay for another SL bugfix in RLVa *sighs*
--HG--
branch : RLVa
meow-7.2.2
parent
5173f3c6e9
commit
a59f5c8f2d
|
|
@ -2928,7 +2928,10 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)
|
|||
query_string["groupowned"] = "true";
|
||||
}
|
||||
|
||||
chat.mURL = LLSLURL("objectim", session_id, "").getSLURLString();
|
||||
// chat.mURL = LLSLURL("objectim", session_id, "").getSLURLString();
|
||||
// [SL:KB] - Checked: 2010-11-02 (RLVa-1.2.2a) | Added: RLVa-1.2.2a
|
||||
chat.mURL = LLSLURL("objectim", session_id, LLURI::mapToQueryString(query_string)).getSLURLString();
|
||||
// [/SL:KB]
|
||||
chat.mText = message;
|
||||
|
||||
// Note: lie to Nearby Chat, pretending that this is NOT an IM, because
|
||||
|
|
|
|||
Loading…
Reference in New Issue