Skip to content

Commit

Permalink
fix: use correct track when getting version history
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats committed Sep 1, 2023
1 parent 1ba5b85 commit 3977aa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XLWebServices/Controllers/PluginController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public IActionResult History(string internalName, [FromQuery(Name = "track")] st
if (this.pluginData.HasFailed)
return StatusCode(500, "Precondition failed");

if (!string.IsNullOrEmpty(dip17Track))
if (string.IsNullOrEmpty(dip17Track))
{
dip17Track = Dip17SystemDefine.MainTrack;
}
Expand Down

0 comments on commit 3977aa1

Please sign in to comment.