diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-08-23 21:48:07 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-08-23 21:48:07 +0800 |
commit | 5a2aaba40f6b23b9497eceb0cb4e753c1255732e (patch) | |
tree | 7d10b4c04932e58b029bd4a984e6eaa533e28082 /indra/llplugin/llpluginclassmedia.cpp | |
parent | 8081dba75bd761cad54ecb212fbbb5499c75b693 (diff) |
Stream notification header uses title metadata
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 2da24adbf7..f7f38b83cc 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"); |