Skip to content

Commit

Permalink
Fix url link for SteamID lookup (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
magge-faf authored May 11, 2024
1 parent 51d8d52 commit 1901206
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ protected void updateItem(PlayerFX item, boolean empty) {
steamLookupMenuItem.setOnAction(action -> {
PlayerFX playerFX = tableView.getSelectionModel().getSelectedItem();
playerFX.getAccountLinks().stream().filter(accountLink -> accountLink.getServiceType().equals(LinkedServiceType.STEAM)).findFirst().ifPresent(accountLink ->
platformService.showDocument("https://steamidfinder.com/lookup/" + accountLink.getServiceId())
platformService.showDocument("https://steamcommunity.com/profiles/" + accountLink.getServiceId())
);
});

Expand Down

0 comments on commit 1901206

Please sign in to comment.