Skip to content

Commit

Permalink
Merge pull request #116 from Sidekick-Poe/feature/logbook-map-mods
Browse files Browse the repository at this point in the history
Add support to mod check a logbook
  • Loading branch information
domialex committed May 18, 2023
2 parents 84e1b1c + 54bc6d2 commit a2c49ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Sidekick.Modules.Maps/MapOverlay.razor
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ else
return;
}

if (Item.Metadata.Category != Category.Map && Item.Metadata.Category != Category.Contract)
if (Item.Metadata.Category != Category.Map &&
Item.Metadata.Category != Category.Contract &&
Item.Metadata.Category != Category.Logbook)
{
NavigationManager.NavigateTo(ErrorType.InvalidItem.ToUrl());
return;
Expand Down

0 comments on commit a2c49ba

Please sign in to comment.