CC-5038: Silan error: list index out of range
-fixed
This commit is contained in:
parent
afb55c7b51
commit
d1f655d79d
3 changed files with 12 additions and 9 deletions
|
@ -58,7 +58,8 @@ class ReplayGainUpdater(Thread):
|
|||
total += 1
|
||||
|
||||
try:
|
||||
self.api_client.update_replay_gain_values(processed_data)
|
||||
if len(processed_data):
|
||||
self.api_client.update_replay_gain_values(processed_data)
|
||||
except Exception as e:
|
||||
self.logger.error(e)
|
||||
self.logger.debug(traceback.format_exc())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue