[feedback]修正加载BadCase数据异常逻辑

This commit is contained in:
renwj
2022-03-22 14:28:31 +08:00
parent 2a52bff143
commit 60cc2f83ac

View File

@@ -39,8 +39,12 @@ internal class Repository {
.records(isDriven)
.takeIf {
it.isNotEmpty()
}?.also {
itx += it
}
?: getBuildIn(isDriven)
?: getBuildIn(isDriven).also {
itx += it
}
}
}