mark_streaming_write_completed() should still be called on non-writable sources

the sources have already been marked immutable before DiskWriter calls
mark_streaming_write_completed().
This commit is contained in:
Paul Davis
2025-10-14 14:27:41 -06:00
parent c1f568b1f3
commit efca55642f

View File

@@ -251,10 +251,6 @@ AudioFileSource::set_state (const XMLNode& node, int version)
void
AudioFileSource::mark_streaming_write_completed (const WriterLock& lock, Temporal::timecnt_t const & duration)
{
if (!writable()) {
return;
}
AudioSource::mark_streaming_write_completed (lock, duration);
}