1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-01-03 14:56:34 -05:00

Update: Increased the maximum playlist items default from 4 to 10.

Closes: xiph/icecast-server#2332
This commit is contained in:
Philipp Schafft 2018-07-07 10:08:27 +00:00
parent 45d44a6349
commit ade6aef0fd

View File

@ -102,7 +102,7 @@ source_t *source_reserve (const char *mount)
src->client_tree = avl_tree_new(_compare_clients, NULL);
src->pending_tree = avl_tree_new(_compare_clients, NULL);
src->history = playlist_new(4 /* DOCUMENT: default is max_tracks=4. */);
src->history = playlist_new(10 /* DOCUMENT: default is max_tracks=10. */);
/* make duplicates for strings or similar */
src->mount = strdup(mount);