mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
Incorrect logic in ServiceContainer version check
This commit is contained in:
parent
a10dd416ac
commit
ca39735022
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ namespace Dalamud.IoC.Internal
|
||||||
return (parameterType, requiredVersion);
|
return (parameterType, requiredVersion);
|
||||||
});
|
});
|
||||||
|
|
||||||
var versionCheck = parameters.Any(p =>
|
var versionCheck = parameters.All(p =>
|
||||||
{
|
{
|
||||||
// if there's no required version, ignore it
|
// if there's no required version, ignore it
|
||||||
if (p.requiredVersion == null)
|
if (p.requiredVersion == null)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue