Skip to content

Commit

Permalink
Merge pull request #144 from snikket-im/fix/invite-link-header
Browse files Browse the repository at this point in the history
Fix Link header on invite pages
  • Loading branch information
horazont authored Mar 28, 2023
2 parents 48a4a8f + 40562d1 commit 0aff4fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snikket_web/invite.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ async def view(id_: str) -> typing.Union[quart.Response,
return quart.Response(
body,
headers={
"Link": "<{}> rel=\"alternate\"".format(invite.xmpp_uri),
"Link": "<{}>; rel=\"alternate\"".format(invite.xmpp_uri),
}
)

Expand Down

0 comments on commit 0aff4fc

Please sign in to comment.