Skip to content

Commit

Permalink
Handled rare situation where EliteBGS API would return and EDDBID of …
Browse files Browse the repository at this point in the history
…null.
  • Loading branch information
EricJFisher committed Dec 15, 2021
1 parent c5a864b commit f3954d1
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.4</Version>
<Version>1.0.1.5</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/EliteBgsFactionRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public partial class Doc
public string Allegiance { get; set; }

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

[JsonProperty("faction_presence")]
public List<FactionPresence> FactionPresence { get; set; }
Expand Down

0 comments on commit f3954d1

Please sign in to comment.