Merge pull request #142 from balint1414/dev

gradestreak probléma javítás: nem ignorálja a szöveges értékelést
This commit is contained in:
Márton Kiss 2024-11-16 19:55:53 +01:00 committed by GitHub
commit fd3b21b8e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -153,7 +153,7 @@ class GradeProvider with ChangeNotifier {
for (Grade grade in grs) {
if (grade.value.value == 5) {
gradeStreak++;
} else {
} else if (grade.value.value !=0) {
break;
}
}