From c0d7f01b38ebf887f5431eb5c45fcd499649a5b2 Mon Sep 17 00:00:00 2001 From: G2-Games Date: Thu, 30 Nov 2023 14:41:33 -0600 Subject: [PATCH] Fixed array length for blocked extensions --- src/music_storage/music_db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/music_storage/music_db.rs b/src/music_storage/music_db.rs index 912070e..44939df 100644 --- a/src/music_storage/music_db.rs +++ b/src/music_storage/music_db.rs @@ -294,7 +294,7 @@ impl Album<'_> { } } -const BLOCKED_EXTENSIONS: [&str; 5] = ["vob", "log", "txt", "sf2"]; +const BLOCKED_EXTENSIONS: [&str; 4] = ["vob", "log", "txt", "sf2"]; #[derive(Debug)] pub struct MusicLibrary {