Skip to content

Commit

Permalink
fix: modify service
Browse files Browse the repository at this point in the history
  • Loading branch information
gitmkn committed Oct 9, 2023
1 parent c899109 commit f024e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tencentcloud/service_tencentcloud_eb.go
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ func (me *EbService) DescribeEbPlateformEventTemplateByFilter(ctx context.Contex
}
log.Printf("[DEBUG]%s api[%s] success, request body [%s], response body [%s]\n", logId, request.GetAction(), request.ToJsonString(), response.ToJsonString())

if response.Response.EventTemplate == nil {
if response == nil || response.Response == nil || response.Response.EventTemplate == nil {
return
}

Expand Down

0 comments on commit f024e0b

Please sign in to comment.