From d2101f6203628b18adac4fca7870bc3dbd49fad2 Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Fri, 1 Apr 2011 05:53:32 +0800 Subject: [PATCH] set the default priorit to DVR_PRIO_NORMAL instead of 0 with creating a DVR entry without an EPG event. --- src/htsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/htsp.c b/src/htsp.c index c6d6be25..9d916ec4 100644 --- a/src/htsp.c +++ b/src/htsp.c @@ -529,7 +529,7 @@ htsp_method_addDvrEntry(htsp_connection_t *htsp, htsmsg_t *in) // get the optional attributes if (htsmsg_get_u32(in, "priority", &iPriority)) - iPriority = 0; + iPriority = DVR_PRIO_NORMAL; if ((strDescription = htsmsg_get_str(in, "description")) == NULL) strDescription = "";