Skip to content

Commit

Permalink
fix class selection dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipthelen committed Jul 19, 2023
1 parent 94aa6a7 commit 765403b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class ClassSelectionActivity : BaseActivity() {
private fun displayConfirmationDialogForClass() {
if (isClassSelected) {
val alert = HabiticaAlertDialog(this)
alert.setTitle(getString(R.string.change_class_selected_confirmation, newClass))
alert.setTitle(getString(R.string.change_class_selected_confirmation, className))
alert.setMessage(getString(R.string.change_class_confirmation_message))
alert.addButton(R.string.choose_class, true) { _, _ ->
selectClass(newClass)
Expand All @@ -242,7 +242,7 @@ class ClassSelectionActivity : BaseActivity() {
private fun displayClassChanged(selectedClass: String) {
val alert = HabiticaAlertDialog(this)
alert.setTitle(getString(R.string.class_changed, className))
alert.setMessage(getString(R.string.class_changed_description, selectedClass))
alert.setMessage(getString(R.string.class_changed_description, className))
alert.addButton(getString(R.string.complete_tutorial), true){ _, _ -> dismiss() }
alert.addButton(getString(R.string.learn_more), false){ _, _ ->
dismiss()
Expand Down
2 changes: 1 addition & 1 deletion fastlane/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
New in 4.2.3:
New in 4.2.4:
It's easier than ever to party up with our newest feature: Look for Party and Find Members!

Solo players can let Party leaders know they want an invite by going to Menu > Party and tapping 'Look for Party'
Expand Down
4 changes: 2 additions & 2 deletions version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
NAME=4.2.3
CODE=6231
NAME=4.2.4
CODE=6241

0 comments on commit 765403b

Please sign in to comment.