Use raw_json on all reddit calls

This commit is contained in:
Andre Medeiros 2022-05-17 17:36:59 -04:00
parent 6cfdc1ba74
commit 527552eb6d

View file

@ -43,6 +43,8 @@ func NewRequest(opts ...RequestOption) *Request {
client: nil,
}
req.query.Set("raw_json", "1")
for _, opt := range opts {
opt(req)
}