Skip to content

Commit

Permalink
LDBR-4.31: Исправить порты. (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
DPeshkoff authored Dec 16, 2021
1 parent 9ba515f commit c70d935
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stores/BoardStore/BoardStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ class BoardStore extends BaseStore {
*/
_setCardInvite(accessPath) {
this._storage.get('add-card-member-popup').inviteLink =
`http://${SelfAddress.Url}:${SelfAddress.Port}` + Urls.Invite.CardPath + accessPath;
`http://${SelfAddress.Url}` + Urls.Invite.CardPath + accessPath;
}

/**
Expand All @@ -481,7 +481,7 @@ class BoardStore extends BaseStore {
*/
_setBoardInvite(accessPath) {
this._storage.get('add-board-member-popup').inviteLink =
`http://${SelfAddress.Url}:${SelfAddress.Port}` + Urls.Invite.BoardPath + accessPath;
`http://${SelfAddress.Url}` + Urls.Invite.BoardPath + accessPath;
}

/**
Expand Down

0 comments on commit c70d935

Please sign in to comment.