sectionsd.cpp:sort unique search-eventlist (fix tiny)

Origin commit data
------------------
Commit: ff2ca4393d
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-05-11 (Fri, 11 May 2012)
This commit is contained in:
Jacek Jendrzej
2012-05-11 12:33:59 +02:00
parent 24a87db390
commit 65b62038ed

View File

@@ -2245,7 +2245,7 @@ void sectionsd_getEventsServiceKey(t_channel_id serviceUniqueKey, CChannelEventL
break; // sind nach serviceID und startzeit sortiert -> nicht weiter suchen
}
unlockEvents();
if(!search_text.empty() && !eList.empty()){
if(search != 0 && !eList.empty()){
sort(eList.begin(),eList.end(),sortByDateTime);
unique(eList.begin(),eList.end(),sortbyEventid);
eList.erase(unique(eList.begin(),eList.end(),sortbyEventid),eList.end());