Skip to content

Commit

Permalink
Fixed a bug where sometime eddb_id could be received as null causing …
Browse files Browse the repository at this point in the history
…bgsbuddy to error.
  • Loading branch information
EricJFisher committed May 23, 2021
1 parent 5765661 commit c5a864b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BGSBuddy/BGSBuddy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Version>1.0.1.3</Version>
<Version>1.0.1.4</Version>
<Authors>Eric J Fisher</Authors>
<Company />
<Description>Application that pulls Back Ground Simulation information about a given faction for Elite Dangerous then produces a situtation report to help with BGS planning.</Description>
Expand Down
2 changes: 1 addition & 1 deletion Repositories/EliteBgsTypes/EliteBgsSationRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public partial class Doc
public DateTimeOffset UpdatedAt { get; set; }

[JsonProperty("eddb_id")]
public long EddbId { get; set; }
public long? EddbId { get; set; }

[JsonProperty("all_economies")]
public List<AllEconomy> AllEconomies { get; set; }
Expand Down

0 comments on commit c5a864b

Please sign in to comment.