Skip to content

Commit

Permalink
Merge pull request TeamNADA#692 from hyun99999/feature/TeamNADA#691
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun99999 committed Feb 15, 2024
2 parents 680a6e4 + 09e1d7e commit 0b41a17
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,10 @@ extension HomeViewController {

if currentVersionArray[0] < appStoreVersionArray[0] {
return true
} else {
} else if currentVersionArray[0] == appStoreVersionArray[0] {
return currentVersionArray[1] < appStoreVersionArray[1] ? true : false
} else {
return false
}
}

Expand Down

0 comments on commit 0b41a17

Please sign in to comment.