Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
epggrab: channels - fix wrong condition in epggrab_channel_link_delete()
  • Loading branch information
perexg committed Oct 2, 2014
1 parent 5d06c06 commit 3373ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/epggrab/channel.c
Expand Up @@ -50,7 +50,7 @@ epggrab_channel_link_delete
{
LIST_REMOVE(ecl, ecl_chn_link);
LIST_REMOVE(ecl, ecl_epg_link);
if (!delconf && ecl->ecl_epggrab->mod->ch_save)
if (delconf && ecl->ecl_epggrab->mod->ch_save)
ecl->ecl_epggrab->mod->ch_save(ecl->ecl_epggrab->mod, ecl->ecl_epggrab);
free(ecl);
}
Expand Down

0 comments on commit 3373ac6

Please sign in to comment.