diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-08-23 22:45:04 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-08-23 22:45:04 +0800 |
commit | f95c6a4d8d9887c75f23e0512645143760f26210 (patch) | |
tree | 100f84649cb7f69fa4371bd80b9a78f659eee53c /indra/llplugin/llpluginclassmedia.cpp | |
parent | a9113d199645fcd3db46e120c0d9e86fb3f1ce93 (diff) | |
parent | 2b0a318facb9b698ed6818be6e0f4488cb6ba272 (diff) |
Merge branch 'main' into 2024.06-atlasaurus
Diffstat (limited to 'indra/llplugin/llpluginclassmedia.cpp')
-rw-r--r-- | indra/llplugin/llpluginclassmedia.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llplugin/llpluginclassmedia.cpp b/indra/llplugin/llpluginclassmedia.cpp index 2024579021..17f403e8e8 100644 --- a/indra/llplugin/llpluginclassmedia.cpp +++ b/indra/llplugin/llpluginclassmedia.cpp @@ -1211,6 +1211,10 @@ void LLPluginClassMedia::receivePluginMessage(const LLPluginMessage &message) mMediaName = message.getValue("name"); mediaEvent(LLPluginClassMediaOwner::MEDIA_EVENT_NAME_CHANGED); } + else if(message_name == "title_text") + { + mMediaTitle = message.getValue("title"); + } else if(message_name == "nowplaying_text") { mMediaNowPlaying = message.getValue("nowplaying"); |