diff --git a/lib/src/reddit.dart b/lib/src/reddit.dart index e9e3048..018c089 100644 --- a/lib/src/reddit.dart +++ b/lib/src/reddit.dart @@ -620,6 +620,8 @@ class Reddit { 'Cannot make requests using unauthenticated client.'); } final path = Uri.https(defaultOAuthApiEndpoint, api); + params ??= {}; + params['raw_json'] = '1'; final response = await auth.get(path, params: params, followRedirects: followRedirects); return objectify ? _objector.objectify(response) : response;