Skip to content

Commit

Permalink
fix: fix latest is uncontrolled (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
CorrectRoadH authored Mar 22, 2024
1 parent b81b8a6 commit 6570ad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion route/v2/compose_app.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func (a *AppManagement) IsNewComposeUncontrolled(newComposeApp *service.ComposeA

// TODO refactor this. because if user not update. the status will be uncontrolled.
if newTag == "latest" {
return true, nil
return false, nil
} else {
// compare store info
StoreApp, err := service.MyService.V2AppStore().ComposeApp(newComposeApp.Name)
Expand Down

0 comments on commit 6570ad2

Please sign in to comment.