This commit is contained in:
Charles Torre 2022-03-14 15:56:54 -07:00
Родитель 572bcd3284
Коммит 5230c42580
5 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -59,7 +59,7 @@ namespace FabricHealer.Repair.Guan
break;
case "Boolean":
repairConfiguration.RepairPolicy.DoHealthChecks = (bool)Input.Arguments[0].Value.GetObjectValue();
repairConfiguration.RepairPolicy.DoHealthChecks = (bool)Input.Arguments[i].Value.GetObjectValue();
break;
default:

Просмотреть файл

@ -60,7 +60,7 @@ namespace FabricHealer.Repair.Guan
break;
case "Boolean":
repairConfiguration.RepairPolicy.DoHealthChecks = (bool)Input.Arguments[0].Value.GetObjectValue();
repairConfiguration.RepairPolicy.DoHealthChecks = (bool)Input.Arguments[i].Value.GetObjectValue();
break;
default:

Просмотреть файл

@ -67,7 +67,7 @@ namespace FabricHealer.Repair.Guan
break;
case "Boolean":
repairConfiguration.RepairPolicy.DoHealthChecks = (bool)Input.Arguments[0].Value.GetObjectValue();
repairConfiguration.RepairPolicy.DoHealthChecks = (bool)Input.Arguments[i].Value.GetObjectValue();
break;
default:

Просмотреть файл

@ -56,7 +56,7 @@ namespace FabricHealer.Repair.Guan
break;
case "Boolean":
repairConfiguration.RepairPolicy.DoHealthChecks = (bool)Input.Arguments[0].Value.GetObjectValue();
repairConfiguration.RepairPolicy.DoHealthChecks = (bool)Input.Arguments[i].Value.GetObjectValue();
break;
default:

Просмотреть файл

@ -57,7 +57,7 @@ namespace FabricHealer.Repair.Guan
break;
case "Boolean":
repairConfiguration.RepairPolicy.DoHealthChecks = (bool)Input.Arguments[0].Value.GetObjectValue();
repairConfiguration.RepairPolicy.DoHealthChecks = (bool)Input.Arguments[i].Value.GetObjectValue();
break;
default: