From dca1d3714b8bf009ff17e8fd019b6827f1fa7f11 Mon Sep 17 00:00:00 2001 From: tt2468 Date: Sun, 11 Apr 2021 23:16:09 -0700 Subject: [PATCH] vlc-video: Ignore URLs when checking for missing files --- plugins/vlc-video/vlc-video-source.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/vlc-video/vlc-video-source.c b/plugins/vlc-video/vlc-video-source.c index c663601c3..9d42a9c7b 100644 --- a/plugins/vlc-video/vlc-video-source.c +++ b/plugins/vlc-video/vlc-video-source.c @@ -1131,7 +1131,8 @@ static obs_missing_files_t *vlcs_missingfiles(void *data) const char *path = obs_data_get_string(item, "value"); if (strcmp(path, "") != 0) { - if (!os_file_exists(path)) { + if (!os_file_exists(path) && + strstr(path, "://") == NULL) { obs_missing_file_t *file = obs_missing_file_create( path, missing_file_callback,