-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fails to rip if MB Release doesn't have a release date/year #133
Comments
Sorry (accidental button press). As the release date metadata used by the tagging task can be --- whipper-master/morituri/common/program.py
+++ whipper-edited/morituri/common/program.py
@@ -462,7 +462,8 @@
tags['TRACKNUMBER'] = u'%s' % number
if self.metadata:
- tags['DATE'] = self.metadata.release
+ if self.metadata.release:
+ tags['DATE'] = self.metadata.release
if number > 0:
tags['MUSICBRAINZ_TRACKID'] = mbidTrack I haven't verified if there are other similar cases (regarding the tagging task) which may produce an erroneous condition like the one reported here... |
@JoeLametta Even if this search could be done locally on a computer, you’ve made me found one reason to stop being a fork of morituri: https://github.com/JoeLametta/whipper/search?q=self.metadata&type=Code&utf8=%E2%9C%93 |
Running from git/master (at commit 2367286) trying to rip a release without a release date in MusicBrainz, whipper fails to rip because "
None
is not a valid value".Output:
The text was updated successfully, but these errors were encountered: