Skip to content

Commit

Permalink
Merge branch 'hotfix/5.63.1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
cmonfortep committed Sep 1, 2020
2 parents 6a97403 + 68a659d commit 28dfd2a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ enum class CtaId {
DAX_DIALOG_OTHER,
DAX_END,
USE_OUR_APP,
USE_OUR_APP_DELETION
USE_OUR_APP_DELETION,
UNKNOWN
}

@Entity(
Expand All @@ -46,7 +47,11 @@ data class DismissedCta(

@TypeConverter
fun toId(value: String): CtaId {
return CtaId.valueOf(value)
return try {
CtaId.valueOf(value)
} catch (ex: IllegalArgumentException) {
CtaId.UNKNOWN
}
}

@TypeConverter
Expand Down
2 changes: 1 addition & 1 deletion app/version/version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=5.63.0
VERSION=5.63.1

0 comments on commit 28dfd2a

Please sign in to comment.