summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nlopes/slack/search.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/nlopes/slack/search.go')
-rw-r--r--vendor/github.com/nlopes/slack/search.go9
1 files changed, 3 insertions, 6 deletions
diff --git a/vendor/github.com/nlopes/slack/search.go b/vendor/github.com/nlopes/slack/search.go
index e858952f..2d018fcc 100644
--- a/vendor/github.com/nlopes/slack/search.go
+++ b/vendor/github.com/nlopes/slack/search.go
@@ -2,7 +2,6 @@ package slack
import (
"context"
- "errors"
"net/url"
"strconv"
)
@@ -104,14 +103,12 @@ func (api *Client) _search(ctx context.Context, path, query string, params Searc
}
response = &searchResponseFull{}
- err := postSlackMethod(ctx, api.httpclient, path, values, response, api.debug)
+ err := postSlackMethod(ctx, api.httpclient, path, values, response, api)
if err != nil {
return nil, err
}
- if !response.Ok {
- return nil, errors.New(response.Error)
- }
- return response, nil
+
+ return response, response.Err()
}