Skip to content

Commit

Permalink
Merge pull request #1802 from Ginger-Automation/BugFix/8893-datasourc…
Browse files Browse the repository at this point in the history
…e-update-fix

 Bug 8893:3.7.3- DataSource not getting updated correctly
  • Loading branch information
JinendraGhodke authored Jan 29, 2021
2 parents bdba4bf + 971d87d commit e9b635d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Ginger/GingerCoreNET/ValueExpressionLib/ValueExpression.cs
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,12 @@ public void ReplaceDataSource(string p)
{
nextavail = true;
}
liteDB.RunQuery(litedbquery, 0, tableName[0], Markasdone, nextavail);

if (litedbquery != "" && Markasdone == true)
{
liteDB.RunQuery(litedbquery, 0, tableName[0], Markasdone, nextavail);
mValueCalculated = "";
}
}
}
else
Expand Down

0 comments on commit e9b635d

Please sign in to comment.