This commit is contained in:
14Sandee
2024-01-10 15:42:42 +05:30
parent 6bfb8e4c30
commit 20ed53591c

View File

@@ -288,7 +288,7 @@ public class AddRoutineFragment extends Fragment implements CompoundButton.OnChe
if (start_date == null || end_date == null) throw new Exception();
if (start_date.getTime() >= end_date.getTime()){
Toast.makeText(requireContext(), "Emd time should be greater than start time.", Toast.LENGTH_SHORT).show();
Toast.makeText(requireContext(), "End time should be greater than start time.", Toast.LENGTH_SHORT).show();
allOkay = false;
}