updated music info helper to dispose of taglib

This commit is contained in:
reven
2022-02-03 16:55:26 +13:00
parent dc734ec7c7
commit 17c9bbca5e
2 changed files with 1 additions and 12 deletions

View File

@@ -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;
}

View File

@@ -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
{
}
}