Skip to content

Commit

Permalink
Merge branch 'develop' into feature/TeamNADA#689
Browse files Browse the repository at this point in the history
  • Loading branch information
dlwns33 committed Feb 22, 2024
2 parents 2e97e08 + 0b41a17 commit 25006ae
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 25006ae

Please sign in to comment.