Skip to content

Commit

Permalink
Fix key used as language
Browse files Browse the repository at this point in the history
  • Loading branch information
rainbowdashlabs committed Jul 27, 2024
1 parent 3965e25 commit 087b3f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
publishData {
addRepo(Repo.main("", "", false))
addRepo(Repo.snapshot("SNAPSHOT", "", false))
publishingVersion = "2.1.1"
publishingVersion = "2.1.2"
}
version = publishData.getVersion()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public String getValue(String key, String language) {
String result = null;
if (localeBundle(language).containsKey(key)) {
try {
result = localeBundle(key).getString(key);
result = localeBundle(language).getString(key);
} catch (MissingResourceException e) {
// ignore
}
Expand Down

0 comments on commit 087b3f0

Please sign in to comment.