Skip to content

Commit

Permalink
Missing variable added by ruuda
Browse files Browse the repository at this point in the history
  • Loading branch information
rdswift authored and phw committed Apr 10, 2023
1 parent acc1623 commit 49055c0
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2018, 2021 Bob Swift (rdswift)
# Copyright (C) 2018-2022 Bob Swift (rdswift)
# Copyright (C) 2023 Ruud van Asseldonk (ruuda)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -30,7 +31,7 @@
<br /><br />
Please see the <a href="https://github.com/rdswift/picard-plugins/blob/2.0_RDS_Plugins/plugins/additional_artists_variables/docs/README.md">user guide</a> on GitHub for more information.
'''
PLUGIN_VERSION = '0.8.1'
PLUGIN_VERSION = '0.8.2'
PLUGIN_API_VERSIONS = ['2.0', '2.1', '2.2', '2.7']
PLUGIN_LICENSE = 'GPL-2.0-or-later'
PLUGIN_LICENSE_URL = 'https://www.gnu.org/licenses/gpl-2.0.html'
Expand Down Expand Up @@ -205,6 +206,8 @@ def process_artists(album_id, source_metadata, destination_metadata, source_type
destination_metadata['~artists_{0}_all_std_multi'.format(source_type,)] = std_artist_list
if cred_artist_list:
destination_metadata['~artists_{0}_all_cred_multi'.format(source_type,)] = cred_artist_list
if sort_artist_list:
destination_metadata['~artists_{0}_all_sort_multi'.format(source_type,)] = sort_artist_list
if legal_artist_list:
destination_metadata['~artists_{0}_all_legal_multi'.format(source_type,)] = legal_artist_list
if sort_pri_artist:
Expand Down

0 comments on commit 49055c0

Please sign in to comment.