From 56b1b5c31f53ebe343c48faf9b77ce4512638b39 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Sun, 9 Aug 2020 13:23:09 -0500 Subject: [PATCH] Bug 2445 - Cryptic, unhelpful, error message when importing malformed MP3 file --- src/import/ImportMP3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/import/ImportMP3.cpp b/src/import/ImportMP3.cpp index 016580688..e425f4d4d 100644 --- a/src/import/ImportMP3.cpp +++ b/src/import/ImportMP3.cpp @@ -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; }