From ede77808740854ddf4affa86687bd12ff3634797 Mon Sep 17 00:00:00 2001 From: Josef Citrine Date: Mon, 27 Mar 2017 19:44:20 +0100 Subject: [PATCH] #100: Don't know why this was missing --- app/Console/Commands/ImportPonify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/ImportPonify.php b/app/Console/Commands/ImportPonify.php index 1f006e66..93e978ca 100644 --- a/app/Console/Commands/ImportPonify.php +++ b/app/Console/Commands/ImportPonify.php @@ -456,7 +456,7 @@ class ImportPonify extends Command { if (array_key_exists('tags', $rawTags) && array_key_exists('id3v2', $rawTags['tags'])) { $tags = $rawTags['tags']['id3v2']; - } elseif (array_key_exists('id3v2', $rawTags)) { + } elseif (array_key_exists('id3v2', $rawTags['tags'])) { $tags = $rawTags['tags']['id3v2']; } elseif (array_key_exists('tags', $rawTags) && array_key_exists('id3v1', $rawTags['tags'])) { $tags = $rawTags['tags']['id3v1'];