Browse Source

Merge pull request #17368 from abpframework/auto-merge/rel-7-3/2119

Merge branch dev with rel-7.3
pull/17372/head
liangshiwei 3 years ago
committed by GitHub
parent
commit
c6bd9cda06
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      modules/account/src/Volo.Abp.Account.Application/Volo/Abp/Account/Emailing/AccountEmailer.cs

5
modules/account/src/Volo.Abp.Account.Application/Volo/Abp/Account/Emailing/AccountEmailer.cs

@ -101,6 +101,11 @@ public class AccountEmailer : IAccountEmailer, ITransientDependency
} }
} }
if (returnUrl.StartsWith("/connect/authorize?", StringComparison.OrdinalIgnoreCase))
{
return HttpUtility.UrlEncode(returnUrl);
}
return returnUrl; return returnUrl;
} }
} }

Loading…
Cancel
Save