From 6203694df53fc0173afeeec1eab1f863bcea1c6d Mon Sep 17 00:00:00 2001 From: Helge Norberg Date: Thu, 31 Jul 2014 17:29:40 +0200 Subject: [PATCH] #269 Fixed incorrect duplicate CRLF between result lines in CINF --- protocol/amcp/AMCPCommandsImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/amcp/AMCPCommandsImpl.cpp b/protocol/amcp/AMCPCommandsImpl.cpp index 4d17fc232..bb56a3277 100644 --- a/protocol/amcp/AMCPCommandsImpl.cpp +++ b/protocol/amcp/AMCPCommandsImpl.cpp @@ -1960,7 +1960,7 @@ bool CinfCommand::DoExecute() auto path = itr->path(); auto file = path.replace_extension(L"").filename(); if(boost::iequals(file, _parameters.at(0))) - info += MediaInfo(itr->path(), GetMediaInfoRepo()) + L"\r\n"; + info += MediaInfo(itr->path(), GetMediaInfoRepo()); } if(info.empty()) -- 2.39.2