Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #101 from aandryashin/master
Browse files Browse the repository at this point in the history
Fix #100
  • Loading branch information
vania-pooh authored Jul 17, 2017
2 parents a184d95 + 44e10c0 commit 8767275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func (h *Host) session(ctx context.Context, header http.Header, c caps) (map[str
return nil, seleniumError
}
fragments := strings.Split(l.Path, "/")
return map[string]interface{}{"sessionId": fragments[len(fragments)-1], "status": 0}, browserStarted
return map[string]interface{}{"sessionId": fragments[len(fragments)-1], "status": 0, "value": struct{}{}}, browserStarted
}
var reply map[string]interface{}
err = json.NewDecoder(resp.Body).Decode(&reply)
Expand Down

0 comments on commit 8767275

Please sign in to comment.