Skip to content

Commit e4895d4

Browse files
smarttowelTheAssassin
authored andcommitted
Fix crash with qt6 and multimedia plugin
1 parent 76a163b commit e4895d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/deployers/PluginsDeployerFactory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ std::vector<std::shared_ptr<PluginsDeployer>> PluginsDeployerFactory::getDeploye
6565
return {getInstance<PositioningPluginsDeployer>(moduleName)};
6666
}
6767

68-
if (moduleName == "multimedia") {
68+
if (qtMajorVersion < 6 && moduleName == "multimedia") {
6969
return {getInstance<MultimediaPluginsDeployer>(moduleName)};
7070
}
7171

0 commit comments

Comments
 (0)