Skip to content

Commit

Permalink
Fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick91 committed Mar 2, 2024
1 parent 492b6af commit 4f5f1c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strawberry/http/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ def _is_multipart_subscriptions(
if params.get("boundary") != "graphql":
return False

return params.get("subscriptionspec") == "1.0"
return params.get("subscriptionspec", "").startswith("1.0")

0 comments on commit 4f5f1c4

Please sign in to comment.