Properly escape release attachment URL (#6512) (#6523)

Make sure file attachments on a release get a properly escaped URL when
linking.

Fixes #6506
This commit is contained in:
mrsdizzie 2019-04-05 13:00:20 -04:00 committed by techknowlogick
parent 3b28de7d8e
commit 2551660f49
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@
{{if .Attachments}}
{{range $attachment := .Attachments}}
<li>
<a target="_blank" rel="noopener noreferrer" href="{{$.RepoLink}}/releases/download/{{$release.TagName}}/{{$attachment.Name}}">
<a target="_blank" rel="noopener noreferrer" href="{{$.RepoLink}}/releases/download/{{$release.TagName | PathEscape}}/{{$attachment.Name | PathEscape}}">
<strong><span class="ui image octicon octicon-package" title='{{$attachment.Name}}'></span> {{$attachment.Name}}</strong>
<span class="ui text grey right">{{$attachment.Size | FileSize}}</span>
</a>