From 5ee9cbe0698fbaa90e206b552f6dfe6ecfc8067b Mon Sep 17 00:00:00 2001 From: Drew Naylor Date: Mon, 5 Oct 2020 06:30:26 -0400 Subject: [PATCH] Had it right the first time. --- guinget/MainWindow.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guinget/MainWindow.vb b/guinget/MainWindow.vb index 0ef8cb0f..e70762c9 100644 --- a/guinget/MainWindow.vb +++ b/guinget/MainWindow.vb @@ -117,7 +117,7 @@ Public Class aaformMainWindow If My.Settings.OnlyDisplayLatestPackageVersion = True Then ' If the user wants to only display the latest package version, ' we'll have to compare it. - If PackageRow.Item(4).ToString = PackageRow.Item(5).ToString Then + If PackageRow.Item(2).ToString = PackageRow.Item(3).ToString Then ' Only add the package to the list if the package row we're looking ' at is the latest version of the package. aaformMainWindow.datagridviewPackageList.Rows.Add("Do nothing", "Unknown", PackageRow.Item(0), PackageRow.Item(1), PackageRow.Item(2), PackageRow.Item(3), "Loading...", "Loading...")