From 55d06dc87ddcce35f7e2bd30a2a0a178aa794fd4 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Wed, 5 Oct 2016 02:27:35 +0800 Subject: [PATCH] Read MBID from ID3 Tags if possible --- source/net/filebot/web/ID3Lookup.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/web/ID3Lookup.java b/source/net/filebot/web/ID3Lookup.java index 98626176..384ad53c 100644 --- a/source/net/filebot/web/ID3Lookup.java +++ b/source/net/filebot/web/ID3Lookup.java @@ -56,7 +56,7 @@ public class ID3Lookup implements MusicIdentificationService { Integer mediumCount = null; Integer trackIndex = getInteger(mediaInfo, "Track/Position"); Integer trackCount = getInteger(mediaInfo, "Track/Position_Total"); - String mbid = null; + String mbid = getString(mediaInfo, "Acoustid Id"); // try to parse 2016-03-10 String dateString = getString(mediaInfo, "Recorded_Date");