mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-11 23:32:38 +02:00
2020-12-10 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdimport(1) that caused generation of double error messages when processing invalid audio files. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
61641f39af
commit
7667ef70f6
@ -20680,3 +20680,6 @@
|
||||
Operations Guide.
|
||||
2020-12-09 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Incremented the package version to 3.4.1int8.
|
||||
2020-12-10 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in rdimport(1) that caused generation of double
|
||||
error messages when processing invalid audio files.
|
||||
|
@ -1457,7 +1457,7 @@ bool MainObject::OpenAudioFile(RDWaveFile *wavefile,RDWaveData *wavedata)
|
||||
import_failed_imports++;
|
||||
import_journal->addFailure(import_group->name(),orig_filename,
|
||||
tr("unknown/unrecognized file format"));
|
||||
return MainObject::FileBad;
|
||||
return false;
|
||||
}
|
||||
Log(LOG_WARNING,QString().sprintf("success.\n"));
|
||||
}
|
||||
@ -1475,7 +1475,7 @@ bool MainObject::OpenAudioFile(RDWaveFile *wavefile,RDWaveData *wavedata)
|
||||
import_failed_imports++;
|
||||
import_journal->addFailure(import_group->name(),orig_filename,
|
||||
tr("unknown/unrecognized file format"));
|
||||
return MainObject::FileBad;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user