1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-10-18 17:10:11 +00:00

Compare commits

..

2 Commits

Author SHA1 Message Date
1a6727312c
dont override header on email confirmation fail 2021-02-11 14:04:15 +00:00
91d3d2596e
fix broken invite links 2021-02-11 13:49:06 +00:00
2 changed files with 2 additions and 3 deletions

View File

@ -45,7 +45,7 @@ export class DOMInvite implements Invite {
for (let split of ["#", "?"]) { for (let split of ["#", "?"]) {
codeLink = codeLink.split(split)[0]; codeLink = codeLink.split(split)[0];
} }
if (codeLink.slice(0, -1) != "/") { codeLink += "/"; } if (codeLink.slice(-1) != "/") { codeLink += "/"; }
this._codeLink = codeLink + "invite/" + code; this._codeLink = codeLink + "invite/" + code;
const linkEl = this._codeArea.querySelector("a") as HTMLAnchorElement; const linkEl = this._codeArea.querySelector("a") as HTMLAnchorElement;
if (this.label == "") { if (this.label == "") {

View File

@ -136,9 +136,8 @@ func (app *appContext) InviteProxy(gc *gin.Context) {
Password: claims["password"].(string), Password: claims["password"].(string),
Code: claims["invite"].(string), Code: claims["invite"].(string),
} }
f, success := app.newUser(req, true) _, success := app.newUser(req, true)
if !success { if !success {
f(gc)
fail() fail()
return return
} }