Skip to content

Commit

Permalink
Update comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
DrewNaylor committed Oct 8, 2020
1 parent 1bc7849 commit 9f3b7f1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions guinget/MainWindow.vb
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ Public Class aaformMainWindow
PackageRow.Cells.Item(7).Value = Await PackageListTools.FindManifestByVersionAndId(PackageRow.Cells.Item(2).Value.ToString, PackageRow.Cells.Item(4).Value.ToString)

' Ensure the manifest path cell isn't nothing.
' The database was broken just after 1 AM EDT
' on October 8, 2020, so this is to prevent
' future crashes, even if the database is broken
' again.
If PackageRow.Cells.Item(7).Value IsNot Nothing Then
PackageRow.Cells.Item(6).Value = Await PackageTools.GetPackageInfoFromYamlAsync(PackageRow.Cells.Item(7).Value.ToString, "Description")
Else
Expand Down

0 comments on commit 9f3b7f1

Please sign in to comment.