Rename variable

This commit is contained in:
vishnukvmd 2021-09-16 02:41:21 +05:30
parent 1b27724267
commit d6f426e2cf

View file

@ -139,10 +139,10 @@ class BackupSectionWidgetState extends State<BackupSectionWidget> {
showErrorDialog(context, "✨ no duplicates",
"you've no duplicate files that can be cleared");
} else {
int result =
int cleanedItemCount =
await routeToPage(context, DeduplicatePage(duplicates));
if (result != null) {
_showDuplicateFilesDeletedDialog(result);
if (cleanedItemCount != null) {
_showDuplicateFilesDeletedDialog(cleanedItemCount);
}
}
},