Skip to content

Commit

Permalink
Fixes typo on message key
Browse files Browse the repository at this point in the history
  • Loading branch information
RoinujNosde committed May 24, 2021
1 parent d48e1ee commit 644e92f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public long getIntervalExchangeRatesUpdateInTicks() {
* @return the interval
*/
public long getIntervalSavingInvestorsInTicks() {
return getConfig().getInt("saving-interval", 10) * 60 * 20;
return getConfig().getLong("saving-interval", 10) * 60 * 20;
}

/**
Expand Down Expand Up @@ -549,7 +549,7 @@ public String getButtonUpdateName() {
* @return the message
*/
public String getMessageContentAlreadyUptodate() {
return getColoredString("messages.alreay-uptodate",
return getColoredString("messages.already-uptodate",
"This is not necessary, the content is already up-to-date!");
}

Expand Down

0 comments on commit 644e92f

Please sign in to comment.