From 9c8a27c8b13e8eaa7792e015fe26c0c57c13df15 Mon Sep 17 00:00:00 2001 From: Martchus Date: Thu, 14 Sep 2017 01:57:22 +0200 Subject: [PATCH] Fix gathering notifications of MatroskaContainer --- mediafileinfo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mediafileinfo.cpp b/mediafileinfo.cpp index 96e3b9c..2dbaf18 100644 --- a/mediafileinfo.cpp +++ b/mediafileinfo.cpp @@ -1305,6 +1305,7 @@ void MediaFileInfo::gatherRelatedNotifications(NotificationList ¬ifications) case ContainerFormat::Matroska: // those files are only validated when a full parse is forced if(!m_forceFullParse) { + notifications.insert(notifications.end(), m_container->notifications().cbegin(), m_container->notifications().cend()); break; } FALLTHROUGH;