From 223a1e47c1682c52f88fd2fb94fabcb095dc7853 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Fri, 26 Feb 2016 09:37:38 -0500 Subject: [PATCH] core/playlist: Switch over to db_load_idle() Implements #14: Load playlists through an idle task Signed-off-by: Anna Schumaker --- core/playlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/playlist.c b/core/playlist.c index 8f66cfa5..4380530b 100644 --- a/core/playlist.c +++ b/core/playlist.c @@ -79,7 +79,7 @@ void playlist_init(struct queue_ops *ops) queue_set_flag(&playlist_q, Q_NO_SORT); index_init(&playlist_db, "playlist.db", true); - db_load(&playlist_db); + db_load_idle(&playlist_db); } void playlist_deinit()