Skip to content

Commit

Permalink
Release realtime support on Client tools
Browse files Browse the repository at this point in the history
  • Loading branch information
gboddin committed Aug 27, 2020
1 parent 2c964f8 commit f6fe690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Client.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func GetSearchResults(scope string, query string, page int) ([]SearchResult, err

func GetChannel(scope string) (chan SearchResult, error) {
channel := make(chan SearchResult)
wsConnection, _, err := websocket.DefaultDialer.Dial("wss://staging.leakix.net/ws/" + scope, map[string][]string{"Origin":{"staging.leakix.net:443"}})
wsConnection, _, err := websocket.DefaultDialer.Dial("wss://leakix.net/ws/" + scope, map[string][]string{"Origin":{"leakix.net:443"}})
if err != nil {
return nil, err
}
Expand Down

0 comments on commit f6fe690

Please sign in to comment.