Skip to content

Commit

Permalink
🐛 do not fail out on incomplete epoch field on packages (#1821)
Browse files Browse the repository at this point in the history
  • Loading branch information
vjeffrey authored Sep 21, 2023
1 parent a1d29a9 commit 79b8481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/os/resources/packages.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func (x *mqlPackages) list() ([]interface{}, error) {
"format": llx.StringData(osPkg.Format),
"installed": llx.BoolData(true),
"origin": llx.StringData(osPkg.Origin),
// "epoch": "", // TODO: support Epoch
"epoch": llx.NilData, // TODO: support Epoch
})
if err != nil {
return nil, err
Expand Down

0 comments on commit 79b8481

Please sign in to comment.