Skip to content

Commit

Permalink
Update Versions.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ShirosakiMio committed Jul 5, 2024
1 parent 269876d commit 16e4e8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public static void deleteVersion(Context context, Profile profile, String versio
FCLAlertDialog.Builder builder = new FCLAlertDialog.Builder(context);
builder.setAlertLevel(FCLAlertDialog.AlertLevel.ALERT);
builder.setMessage(message);
builder.setPositiveButton(() -> profile.getRepository().removeVersionFromDisk(version));
builder.setPositiveButton(() -> Task.runAsync(() -> profile.getRepository().removeVersionFromDisk(version)).start());
builder.setNegativeButton(null);
builder.create().show();
}
Expand Down

0 comments on commit 16e4e8c

Please sign in to comment.