Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[htsp] fix: dvr update resets priority back to normal
  • Loading branch information
Glenn-1990 authored and perexg committed Nov 24, 2016
1 parent f30b504 commit 82733e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/htsp_server.c
Expand Up @@ -1936,7 +1936,7 @@ htsp_method_updateDvrEntry(htsp_connection_t *htsp, htsmsg_t *in)
stop_extra = htsmsg_get_s64_or_default(in, "stopExtra", 0);
retention = htsmsg_get_u32_or_default(in, "retention", DVR_RET_REM_DVRCONFIG);
removal = htsmsg_get_u32_or_default(in, "removal", DVR_RET_REM_DVRCONFIG);
priority = htsmsg_get_u32_or_default(in, "priority", DVR_PRIO_NORMAL);
priority = htsmsg_get_u32_or_default(in, "priority", DVR_PRIO_NOTSET);
title = htsmsg_get_str(in, "title");
subtitle = htsmsg_get_str(in, "subtitle");
desc = htsmsg_get_str(in, "description");
Expand Down

0 comments on commit 82733e8

Please sign in to comment.