mirror of
https://github.com/rembo10/headphones.git
synced 2026-05-19 18:15:31 +01:00
First patch to stop albums with no release date from being marked as wanted - might need some frontend work in the UI to correct the sorting
This commit is contained in:
@@ -326,8 +326,8 @@ def getRelease(releaseid, include_artist_info=True):
|
||||
|
||||
release['title'] = unicode(results['title'])
|
||||
release['id'] = unicode(results['id'])
|
||||
release['asin'] = unicode(results['asin']) if 'asin' in results else u'None'
|
||||
release['date'] = unicode(results['date']) if 'date' in results else u'None'
|
||||
release['asin'] = unicode(results['asin']) if 'asin' in results else None
|
||||
release['date'] = unicode(results['date']) if 'date' in results else None
|
||||
try:
|
||||
release['format'] = unicode(results['medium-list'][0]['format'])
|
||||
except:
|
||||
|
||||
Reference in New Issue
Block a user