Skip to content

Commit

Permalink
fix(wowgd): use correct namespace for connected realm search (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
Floppy012 authored Oct 21, 2023
1 parent 59326f0 commit 66ea41c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wowgd.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ func (c *Client) WoWCovenantsIndex(ctx context.Context) (*wowgd.CovenantsIndex,
func (c *Client) WoWConnectedRealmSearch(ctx context.Context, opts ...wowsearch.Opt) (*wowgd.ConnectedRealmsSearch, *Header, error) {
dat, header, err := c.getStructData(ctx,
fmt.Sprintf("/data/wow/search/connected-realm%s", buildSearchParams(opts...)),
c.GetDynamicClassicNamespace(),
c.GetDynamicNamespace(),
&wowgd.ConnectedRealmsSearch{},
)
return dat.(*wowgd.ConnectedRealmsSearch), header, err
Expand Down

0 comments on commit 66ea41c

Please sign in to comment.