diff --git a/libs/ardour/export_profile_manager.cc b/libs/ardour/export_profile_manager.cc index 116b88333e..3765ac6ccc 100644 --- a/libs/ardour/export_profile_manager.cc +++ b/libs/ardour/export_profile_manager.cc @@ -1076,6 +1076,11 @@ ExportProfileManager::build_filenames (std::list& result, ExportFil result.push_back (filename->get_path (format)); } } + /* no not retain the channel config - otherwise this retains + * Route::_capturing_processor that may already be removed + * from the processor chain. + */ + filename->set_channel_config (ExportChannelConfigPtr()); } };