You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We do some fun stuff in the set_mp3_meta_data function to make the file better, but in doing so, we make our code fragile. If small pieces of data are missing, we crash and fail to make an mp3. For example, the error below is because we don't have the date argued.
KeyError: 'date_argued'
File "doctor/views.py", line 353, in convert_audio
set_mp3_meta_data(audio_data, filepath)
File "doctor/tasks.py", line 496, in set_mp3_meta_data
date_argued = audio_data["date_argued"]
Lame.
The text was updated successfully, but these errors were encountered:
We do some fun stuff in the
set_mp3_meta_data
function to make the file better, but in doing so, we make our code fragile. If small pieces of data are missing, we crash and fail to make an mp3. For example, the error below is because we don't have the date argued.Sentry Issue: DOCTOR-V
Lame.
The text was updated successfully, but these errors were encountered: