1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

Bug 2445 - Cryptic, unhelpful, error message when importing malformed MP3 file

This commit is contained in:
Leland Lucius 2020-08-09 13:23:09 -05:00
parent 58adb94747
commit 56b1b5c31f

View File

@ -1097,7 +1097,7 @@ enum mad_flow MP3ImportFileHandle::ErrorCB(struct mad_stream *stream,
}
// Let the user know about the error
AudacityMessageBox(XO("MP3 Decoding Failed:\n\n%s").Format(mad_stream_errorstr(stream)));
AudacityMessageBox(XO("Import failed\n\nThis is likely caused by an malformed MP3.\n\n"));
return MAD_FLOW_BREAK;
}