dont float any description if the description string is empty
This commit is contained in:
parent
dbf7b7228e
commit
4487e78ee4
1 changed files with 1 additions and 1 deletions
2
htmlui.c
2
htmlui.c
|
@ -364,7 +364,7 @@ output_event(http_connection_t *hc, tcp_queue_t *tq, th_channel_t *ch,
|
|||
|
||||
cur = epg_event_get_current(ch);
|
||||
|
||||
if(!simple && e->e_desc != NULL) {
|
||||
if(!simple && e->e_desc != NULL && e->e_desc[0] != 0) {
|
||||
esacpe_char(bufa, sizeof(bufa), e->e_desc, '\'', "");
|
||||
|
||||
snprintf(overlibstuff, sizeof(overlibstuff),
|
||||
|
|
Loading…
Add table
Reference in a new issue