From 7f3da31b454f03322cb60b9b842427a0dcf20f2b Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Tue, 10 Mar 2020 02:17:19 -0700 Subject: [PATCH] Consider URLs as 'internal' source so they don't auto play --- Application/AppController.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Application/AppController.m b/Application/AppController.m index 5f63a3732..7474df99c 100644 --- a/Application/AppController.m +++ b/Application/AppController.m @@ -101,8 +101,8 @@ { if (returnCode == NSOKButton) { - [playlistLoader willInsertURLs:[NSArray arrayWithObject:[panel url]] origin:URLOriginExternal]; - [playlistLoader didInsertURLs:[playlistLoader addURLs:[NSArray arrayWithObject:[panel url]] sort:NO] origin:URLOriginExternal]; + [playlistLoader willInsertURLs:[NSArray arrayWithObject:[panel url]] origin:URLOriginInternal]; + [playlistLoader didInsertURLs:[playlistLoader addURLs:[NSArray arrayWithObject:[panel url]] sort:NO] origin:URLOriginInternal]; } }