diff --git a/MusicNodes/MusicInfoHelper.cs b/MusicNodes/MusicInfoHelper.cs index 8618db0d..5dfdf31e 100644 --- a/MusicNodes/MusicInfoHelper.cs +++ b/MusicNodes/MusicInfoHelper.cs @@ -217,6 +217,7 @@ namespace FileFlows.MusicNodes info.Genres = tfile.Tag.Genres.SelectMany(x => x.Split(new[] { ";", "," }, StringSplitOptions.RemoveEmptyEntries).Select(x => x.Trim())).ToArray(); } catch (Exception) { } + tfile.Dispose(); return info; } diff --git a/MusicNodes/Nodes/ID3Tagger.cs b/MusicNodes/Nodes/ID3Tagger.cs deleted file mode 100644 index 31e18341..00000000 --- a/MusicNodes/Nodes/ID3Tagger.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace FileFlows.MusicNodes.Nodes -{ - internal class ID3Tagger - { - } -}