diff --git a/src/driver/record.cpp b/src/driver/record.cpp index 6befa2a3a..8c8888970 100644 --- a/src/driver/record.cpp +++ b/src/driver/record.cpp @@ -1478,7 +1478,7 @@ int CRecordManager::exec(CMenuTarget* parent, const std::string & actionKey ) if (inst) { std::string title, duration; inst->GetRecordString(title, duration); - title += duration; + title += " " + duration; tostart = (ShowMsg(LOCALE_RECORDING_IS_RUNNING, title.c_str(), CMsgBox::mbrYes, CMsgBox::mbYes | CMsgBox::mbNo, NULL, 450, DEFAULT_TIMEOUT) == CMsgBox::mbrYes); } @@ -1642,7 +1642,7 @@ bool CRecordManager::AskToStop(const t_channel_id channel_id, const int recid) if(inst) { inst->GetRecordString(title, duration); - title += duration; + title += " " + duration; } mutex.unlock(); if(inst == NULL)