From 489e10283426a19a395aa056d844eca7e80cd515 Mon Sep 17 00:00:00 2001 From: Stephan Diederich Date: Wed, 2 Dec 2009 19:08:33 +0000 Subject: [PATCH] fixed [htsp]: the event that was asked for in getEvents was missing --- src/htsp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/htsp.c b/src/htsp.c index 8412d6f5..516419ae 100644 --- a/src/htsp.c +++ b/src/htsp.c @@ -636,6 +636,7 @@ htsp_method_getEvents(htsp_connection_t *htsp, htsmsg_t *in) out = htsmsg_create_map(); events = htsmsg_create_list(); + htsmsg_add_msg(events, NULL, htsp_build_event(e)); while( numFollowing-- > 0 ) { e = RB_NEXT(e, e_channel_link); if( e == NULL )