File tree Expand file tree Collapse file tree
base/src/main/kotlin/org/sinytra/probe/base
service/src/main/kotlin/org/sinytra/probe/service/impl Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ sealed interface TestResponseBody {
4545
4646 @Serializable
4747 data class Skipped (
48+ val loader : String ,
4849 val gameVersion : String ,
4950
5051 override val project : TestProjectDTO ,
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import org.sinytra.probe.base.db.ProjectPlatform
1212import org.sinytra.probe.core.model.TestResult
1313import org.sinytra.probe.core.platform.GlobalPlatformService
1414import org.sinytra.probe.core.platform.ModrinthPlatform.Companion.LOADER_FABRIC
15+ import org.sinytra.probe.core.platform.ModrinthPlatform.Companion.LOADER_NEOFORGE
1516import org.sinytra.probe.core.service.AsyncTransformationRunner
1617import org.sinytra.probe.core.service.PersistenceService
1718import org.sinytra.probe.core.service.SetupService
@@ -56,6 +57,7 @@ class RoutingImpl(
5657 if (ifNeoForge) {
5758 return call.respond(
5859 TestResponseBody .Skipped (
60+ LOADER_NEOFORGE ,
5961 body.gameVersion,
6062 testProject,
6163 ResultType .NATIVE
You can’t perform that action at this time.
0 commit comments