Skip to content

Commit

Permalink
RunCommand.cs: Fixed issues causing variable name taking the wrong value
Browse files Browse the repository at this point in the history
  • Loading branch information
VirtualFab committed Jul 3, 2019
1 parent daa577c commit 34bda03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskt/Core/Automation/Commands/RunTaskCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public override void RunCommand(object sender)
var variableList = new List<Script.ScriptVariable>();
foreach (DataRow rw in v_VariableAssignments.Rows)
{
var variableName = ((string)rw.ItemArray[0]).ConvertToUserVariable(sender);
var variableName = ((string)rw.ItemArray[0]);
var variableValue = ((string)rw.ItemArray[1]).ConvertToUserVariable(sender);
variableList.Add(new Script.ScriptVariable
{
Expand Down

0 comments on commit 34bda03

Please sign in to comment.