Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
IPTV: fix the icon path callback
  • Loading branch information
perexg committed Oct 15, 2015
1 parent 848092b commit c8e3465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/iptv/iptv_service.c
Expand Up @@ -93,7 +93,7 @@ iptv_service_channel_icon ( service_t *s )
if (strncmp(ic, "file://", 7) == 0)
ic += 7;
if (in && in->in_icon_url && in->in_icon_url[0]) {
snprintf(prop_sbuf, PROP_SBUF_LEN, "%s/%s", in->in_icon_url, ic + 7);
snprintf(prop_sbuf, PROP_SBUF_LEN, "%s/%s", in->in_icon_url, ic);
return prop_sbuf;
}
}
Expand Down

0 comments on commit c8e3465

Please sign in to comment.