Fix sessions not building according to template

AFAICT, this was broken by either 5beeca2 or 242774e
This commit is contained in:
Nikolaus Gullotta 2020-01-21 09:04:36 -06:00
parent d8d737adc4
commit db03860924
1 changed files with 1 additions and 1 deletions

View File

@ -596,7 +596,7 @@ ARDOUR_UI::build_session_stage_two (std::string const& path, std::string const&
Session* new_session;
try {
new_session = new Session (*AudioEngine::instance(), path, snap_name, bus_profile.master_out_channels > 0 ? &bus_profile : NULL);
new_session = new Session (*AudioEngine::instance(), path, snap_name, bus_profile.master_out_channels > 0 ? &bus_profile : NULL, session_template);
}
catch (SessionException const& e) {
cerr << "Here are the errors associated with this failed session:\n";