summaryrefslogtreecommitdiff
path: root/indra/newview/llviewermedia_streamingaudio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llviewermedia_streamingaudio.cpp')
-rw-r--r--indra/newview/llviewermedia_streamingaudio.cpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/indra/newview/llviewermedia_streamingaudio.cpp b/indra/newview/llviewermedia_streamingaudio.cpp
index 0bea3e1db6..3d2d2fc2a6 100644
--- a/indra/newview/llviewermedia_streamingaudio.cpp
+++ b/indra/newview/llviewermedia_streamingaudio.cpp
@@ -123,17 +123,14 @@ int LLStreamingAudio_MediaPlugins::isPlaying()
mTitle = mMediaPlugin->getMediaTitle();
mNowPlaying = nowPlaying;
auto text = llformat("Now playing %s.", nowPlaying.c_str());
+ LLChat chat{text};
+ chat.mFromName = mTitle;
+ chat.mSourceType = CHAT_SOURCE_SYSTEM;
+ LLNotificationsUI::LLNotificationManager::instance().onChat(chat, LLSD{});
if (gSavedSettings.getBOOL("StreamNotificationChannelEnabled"))
{
send_chat_from_viewer(text, CHAT_TYPE_NORMAL, gSavedSettings.getS32("StreamNotificationChannel"));
}
- else
- {
- LLChat chat{text};
- chat.mFromName = mTitle;
- chat.mSourceType = CHAT_SOURCE_SYSTEM;
- LLNotificationsUI::LLNotificationManager::instance().onChat(chat, LLSD{});
- }
}
switch (status)