Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ${ns.rdf('seeAlso')} <${chatThing.value}> .
function determineChatContainer (invitee, podRoot) {
// Create chat
// See https://gitter.im/solid/chat-app?at=5f3c800f855be416a23ae74a
const chatContainerStr = new URL(`IndividualChats/${new URL(invitee.value).host}/`, podRoot.value).toString()
const chatContainerStr = new URL(`IndividualChats/${new URL(invitee.value).hostname}/`, podRoot.value).toString()
return new NamedNode(chatContainerStr)
}

Expand Down