Handle declined auth result
This commit is contained in:
parent
aa35ab223d
commit
8fe8581b78
4 changed files with 7 additions and 3 deletions
|
|
@ -30,7 +30,7 @@ func ScoreToGrade(score int) string {
|
|||
switch {
|
||||
case score > 100:
|
||||
return "A+"
|
||||
case score > 95:
|
||||
case score >= 95:
|
||||
return "A"
|
||||
case score >= 85:
|
||||
return "B"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue