From 929ea73cd6052c9171d5884f9469ac2ba04af495 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Wed, 26 Dec 2018 12:39:53 -0600 Subject: [PATCH] playlist.c suppress playlist access error on usb plug Change-Id: I6bf446ecb17f5526c2f37158e672f06a5435f5a9 --- apps/playlist.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/playlist.c b/apps/playlist.c index 7420b0afad..b6f19418ed 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -1434,7 +1434,9 @@ static int get_filename(struct playlist_info* playlist, int index, int seek, if (max < 0) { - if (control_file) + if (usb_detect() == USB_INSERTED) + ; /* ignore error on usb plug */ + else if (control_file) splash(HZ*2, ID2P(LANG_PLAYLIST_CONTROL_ACCESS_ERROR)); else splash(HZ*2, ID2P(LANG_PLAYLIST_ACCESS_ERROR));