diff --git a/plugins/vlc-video/vlc-video-source.c b/plugins/vlc-video/vlc-video-source.c index fe9eabf3d..a79d3192f 100644 --- a/plugins/vlc-video/vlc-video-source.c +++ b/plugins/vlc-video/vlc-video-source.c @@ -554,7 +554,7 @@ static bool valid_extension(const char *ext) else dstr_copy(&test, b); - if (dstr_cmp(&test, ext) == 0) { + if (dstr_cmpi(&test, ext) == 0) { valid = true; break; }