diff options
author | Yarden Shoham | 2022-10-22 20:15:52 +0300 |
---|---|---|
committer | GitHub | 2022-10-23 01:15:52 +0800 |
commit | 63ebb53fd526021666bd9fab1f9d092380f7a2f4 (patch) | |
tree | 138c35a4bbe7dae7110399cd1a145598db248f43 /contrib | |
parent | 82ecd3b19eb1382521b7999bd0e2dd977c3b994d (diff) |
Add link to user profile in markdown mention only if user exists (#21533)
Previously mentioning a user would link to its profile, regardless of
whether the user existed. This change tests if the user exists and only
if it does - a link to its profile is added.
* Fixes #3444
Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/pr/checkout.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/pr/checkout.go b/contrib/pr/checkout.go index 09510ac2c..686a3ddff 100644 --- a/contrib/pr/checkout.go +++ b/contrib/pr/checkout.go @@ -33,6 +33,7 @@ import ( "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/util" "code.gitea.io/gitea/routers" + markup_service "code.gitea.io/gitea/services/markup" "github.com/go-git/go-git/v5" "github.com/go-git/go-git/v5/config" @@ -112,7 +113,7 @@ func runPR() { log.Printf("[PR] Setting up router\n") // routers.GlobalInit() external.RegisterRenderers() - markup.Init() + markup.Init(markup_service.ProcessorHelper()) c := routers.NormalRoutes(graceful.GetManager().HammerContext()) log.Printf("[PR] Ready for testing !\n") |