Swallow all filesystem errors when automatically opening audio from video

This commit is contained in:
Thomas Goyne 2013-11-10 07:25:31 -08:00
parent 747e34b981
commit bf13603ae1
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ void FrameMain::OnVideoOpen() {
catch (agi::UserCancelException const&) { }
// Opening a video with no audio data isn't an error, so just log
// and move on
catch (agi::fs::FileNotFound const&) {
catch (agi::fs::FileSystemError const&) {
LOG_D("video/open/audio") << "File " << context->videoController->GetVideoName() << " found by video provider but not audio provider";
}
catch (agi::AudioDataNotFoundError const& e) {