From bf13603ae1b0e7cfc654737b2cff4ba50ff4bc97 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sun, 10 Nov 2013 07:25:31 -0800 Subject: [PATCH] Swallow all filesystem errors when automatically opening audio from video --- aegisub/src/frame_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/frame_main.cpp b/aegisub/src/frame_main.cpp index c8f405f9c..b5505a347 100644 --- a/aegisub/src/frame_main.cpp +++ b/aegisub/src/frame_main.cpp @@ -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) {