Skip to content

Commit

Permalink
bug: 업데이트 여부 로직 변경 (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun99999 committed Feb 15, 2024
1 parent 680a6e4 commit 09e1d7e
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 09e1d7e

Please sign in to comment.