mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 20:57:22 +02:00
Added missing ! to condition check (#6162)
This commit is contained in:
@@ -29,7 +29,7 @@ namespace Microsoft.Plugin.Indexer.SearchHelper
|
|||||||
{
|
{
|
||||||
if (!wDSResults.IsClosed && wDSResults.HasRows)
|
if (!wDSResults.IsClosed && wDSResults.HasRows)
|
||||||
{
|
{
|
||||||
while (wDSResults.IsClosed && wDSResults.Read())
|
while (!wDSResults.IsClosed && wDSResults.Read())
|
||||||
{
|
{
|
||||||
List<object> fieldData = new List<object>(wDSResults.FieldCount);
|
List<object> fieldData = new List<object>(wDSResults.FieldCount);
|
||||||
for (int i = 0; i < wDSResults.FieldCount; i++)
|
for (int i = 0; i < wDSResults.FieldCount; i++)
|
||||||
|
|||||||
Reference in New Issue
Block a user