Skip to content

Commit

Permalink
(#172) Set the CURRENT_EXPORT_SETTINGS_VERSION to what it should be (5)
Browse files Browse the repository at this point in the history
  • Loading branch information
K1rakishou committed Oct 27, 2019
1 parent 4dba625 commit 8e90850
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,6 @@ constructor(

// Don't forget to change this when changing any of the Export models.
// Also, don't forget to handle the change in the onUpgrade or onDowngrade methods
const val CURRENT_EXPORT_SETTINGS_VERSION = 4
const val CURRENT_EXPORT_SETTINGS_VERSION = 5
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ private void showCreateNewOrOverwriteDialog() {

AlertDialog alertDialog = new AlertDialog.Builder(context)
.setTitle(R.string.import_or_export_dialog_title)
.setPositiveButton(positiveButtonId, (dialog, which) -> {
.setPositiveButton(positiveButtonId, (dialog, which) -> {
overwriteExisting();
})
.setNegativeButton(negativeButtonId, (dialog, which) -> {
Expand Down

0 comments on commit 8e90850

Please sign in to comment.