Skip to content

Commit

Permalink
fix: incorrect apis to api
Browse files Browse the repository at this point in the history
Signed-off-by: yang <[email protected]>
  • Loading branch information
big-dust committed Oct 17, 2023
1 parent 80d34cc commit 7a4bac6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions biz/service/platform/ability.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ func CheckPlatformAbility(uri string) bool {
platformApis = InitPlatformAbility()
}

for _, apis := range platformApis.PlatformApis {
for _, api := range platformApis.PlatformApis {
//logger.AppLogger().Debugf(apis.URI)
if uri == apis.Uri {
if uri == api.Uri {
return true
}
}
Expand Down

0 comments on commit 7a4bac6

Please sign in to comment.