Make path to dvrfiles non absolute.

spotted by sb1066
This commit is contained in:
Andreas Öman 2009-08-04 11:49:40 +00:00
parent 7e67205466
commit 166f43d3b7

View file

@ -904,7 +904,7 @@ extjs_dvrlist(http_connection_t *hc, const char *remain, void *opaque)
char url[100];
htsmsg_add_s64(m, "filesize", fsize);
snprintf(url, sizeof(url), "/dvrfile/%d", de->de_id);
snprintf(url, sizeof(url), "dvrfile/%d", de->de_id);
htsmsg_add_str(m, "url", url);
}
}