set the default priorit to DVR_PRIO_NORMAL instead of 0 with creating a DVR entry without an EPG event.
This commit is contained in:
parent
3b3669ea6e
commit
d2101f6203
1 changed files with 1 additions and 1 deletions
|
@ -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 = "";
|
||||
|
|
Loading…
Add table
Reference in a new issue