Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bouquet: notify about a new bouquet
  • Loading branch information
perexg committed Nov 8, 2014
1 parent fd5a275 commit cfca938
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/bouquet.c
Expand Up @@ -163,8 +163,11 @@ bouquet_find_by_source(const char *name, const char *src, int create)
}
return bq;
}
if (create && name)
return bouquet_create(NULL, NULL, name, src);
if (create && name) {
bq = bouquet_create(NULL, NULL, name, src);
tvhinfo("bouquet", "new bouquet '%s'", name);
return bq;
}
return NULL;
}

Expand Down

0 comments on commit cfca938

Please sign in to comment.