Skip to content

Commit

Permalink
fix discogs scrobble if no price
Browse files Browse the repository at this point in the history
  • Loading branch information
th0mk committed Apr 7, 2024
1 parent 1caf1e5 commit e2fd6b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FMBot.Discogs/Models/DiscogsFullRelease.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public class DiscogsFullRelease
{
[JsonPropertyName("id")]
public int Id { get; set; }

[JsonPropertyName("status")]
public string Status { get; set; }

Expand Down Expand Up @@ -134,7 +134,7 @@ public class DiscogsFullRelease
public int NumForSale { get; set; }

[JsonPropertyName("lowest_price")]
public double LowestPrice { get; set; }
public double? LowestPrice { get; set; }

[JsonPropertyName("master_id")]
public int MasterId { get; set; }
Expand Down

0 comments on commit e2fd6b3

Please sign in to comment.