Skip to content

Commit 2821622

Browse files
committed
fix: ConfigApiVersion 逻辑
1 parent 969edb2 commit 2821622

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MaiChartManager/Controllers/ModController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ private static void CheckConfigApiVersion(HeadlessConfigInterface configInterfac
8585
throw new UnsupportedConfigApiVersionException();
8686
}
8787

88-
if (currentSupportedApiVersion.Minor < configApiVersion.Minor)
88+
if (currentSupportedApiVersion.Minor > configApiVersion.Minor)
8989
{
9090
throw new UnsupportedConfigApiVersionException();
9191
}

0 commit comments

Comments
 (0)