Fix artist summary not showing up on newsletter

This commit is contained in:
JonnyWong16 2018-05-27 22:35:54 -07:00
commit 7acb8f7dc5
2 changed files with 2 additions and 2 deletions

View file

@ -889,7 +889,7 @@
<p class="nowrap mb5">
<em>${album['parent_title']} &middot; ${album['track_count']} track${'s' if album['track_count'] > 1 else ''}</em>
</p>
% if artist['title'].lower() != 'various artists':
% if album['parent_title'].lower() != 'various artists':
<p>
${album['summary'][:200] + (album['summary'][200:] and '...')}
</p>