diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc index c07a765fe0..edc458f8dd 100644 --- a/libs/ardour/export_handler.cc +++ b/libs/ardour/export_handler.cc @@ -1019,7 +1019,7 @@ ExportHandler::cue_escape_cdtext (const std::string& txt) std::string out; try { - latin1_txt = Glib::convert (txt, "ISO-8859-1", "UTF-8"); + latin1_txt = Glib::convert_with_fallback (txt, "ISO-8859-1", "UTF-8", "_"); } catch (Glib::ConvertError& err) { throw Glib::ConvertError (err.code(), string_compose (_("Cannot convert %1 to Latin-1 text"), txt)); }