Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* ho-dev#1913 fix Player.getMotherclubId download recursion

* ho-dev#1913 fix Player.getMotherclubId
  • Loading branch information
wsbrenk authored Sep 8, 2023
1 parent 0916760 commit 8a1882a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/core/model/player/Player.java
Original file line number Diff line number Diff line change
Expand Up @@ -512,11 +512,12 @@ private void downloadMotherclubInfoIfMissing() {
}
}

private String getMotherclubName() {

public String getMotherclubName() {
return this.motherclubName;
}

private Integer getMotherclubId() {
public Integer getMotherclubId() {
return this.motherclubId;
}

Expand Down

0 comments on commit 8a1882a

Please sign in to comment.