Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DVR inotify: fix thinko, fixes #2954
  • Loading branch information
perexg committed Jun 19, 2015
1 parent bf4d481 commit b5a4e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dvr/dvr_inotify.c
Expand Up @@ -188,7 +188,7 @@ _dvr_inotify_moved
if (de->de_files == NULL)
continue;
HTSMSG_FOREACH(f, de->de_files)
if ((m = htsmsg_field_get_list(f)) != NULL) {
if ((m = htsmsg_field_get_map(f)) != NULL) {
filename = htsmsg_get_str(m, "filename");
if (filename && !strcmp(path, filename))
break;
Expand Down

0 comments on commit b5a4e1f

Please sign in to comment.