File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## main [ (unreleased)] ( https://github.com/fastruby/skunk/compare/v0.5.4...HEAD )
99
10+ * [ BUGFIX: Set the right content type in the share HTTP request] ( https://github.com/fastruby/skunk/pull/129 )
1011* [ REFACTOR: Centralize Skunk analysis into RubyCritic module] ( https://github.com/fastruby/skunk/pull/127 )
1112* [ FEATURE: Add Skunk HTML Report] ( https://github.com/fastruby/skunk/pull/123 )
1213* [ FEATURE: Add Skunk::Config class] ( https://github.com/fastruby/skunk/pull/123 )
Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ def payload
8989 def post_payload
9090 req = Net ::HTTP ::Post . new ( url )
9191 req . body = payload
92+ req . content_type = "application/json"
9293
9394 http = Net ::HTTP . new ( url . hostname , url . port )
9495 if url . scheme == "https"
You can’t perform that action at this time.
0 commit comments