From fe0172efa9cac55eb9d0d037f719cc8682435bd3 Mon Sep 17 00:00:00 2001 From: Erik Zandvliet Date: Wed, 18 May 2016 11:23:52 +0200 Subject: [PATCH] Renamed the underrun case for STREAM_BUFFER to DRY instead of EMPTY --- src/input/input_buffer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/input_buffer.cpp b/src/input/input_buffer.cpp index f7bd8f58..6d31078b 100644 --- a/src/input/input_buffer.cpp +++ b/src/input/input_buffer.cpp @@ -273,7 +273,7 @@ namespace Mist { } if ((fragCount < FRAG_BOOT || fragCount == 0xFFFFull) && (lastFragCount >= FRAG_BOOT && lastFragCount != 0xFFFFull)) { if (Triggers::shouldTrigger("STREAM_BUFFER")) { - std::string payload = config->getString("streamname") + "\nEMPTY"; + std::string payload = config->getString("streamname") + "\nDRY"; Triggers::doTrigger("STREAM_BUFFER", payload, config->getString("streamname")); } }