Return iterable from the exception handler

This commit is contained in:
Šarūnas Nejus 2022-03-23 16:20:06 +00:00
parent f14eac857b
commit e1ffadb2d6
No known key found for this signature in database
GPG key ID: DD28F6704DBE3435

View file

@ -606,6 +606,7 @@ def invoke_mb(call_func, *args):
return call_func(*args)
except mb.MusicBrainzAPIError as exc:
exc.log(log)
return ()
@plugins.notify_info_yielded('albuminfo_received')