Browse Source

Add AppURL without trailing slash to TOTP issuer parameter to prevent conflicting accounts on multiple gitea installations (#2335)

Signed-off-by: David Schneiderbauer <dschneiderbauer@gmail.com>
master
David Schneiderbauer Lunny Xiao 7 years ago
parent
commit
5707ad3bb7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      routers/user/setting.go

+ 1
- 1
routers/user/setting.go View File

@@ -583,7 +583,7 @@ func twofaGenerateSecretAndQr(ctx *context.Context) bool {
if otpKey == nil {
err = nil // clear the error, in case the URL was invalid
otpKey, err = totp.Generate(totp.GenerateOpts{
Issuer: setting.AppName,
Issuer: setting.AppName + " (" + strings.TrimRight(setting.AppURL, "/") + ")",
AccountName: ctx.User.Name,
})
if err != nil {


Loading…
Cancel
Save