chore: update issues URLs to new repository

This commit is contained in:
Julien Neuhart
2021-08-22 13:27:40 +02:00
parent 0cfac31bca
commit 0e417430b8
4 changed files with 6 additions and 6 deletions

View File

@@ -297,14 +297,14 @@ func (form *FormData) MandatoryPaths(extensions []string, target *[]string) *For
func (form *FormData) paths(extensions []string, target *[]string) *FormData {
for filename, path := range form.files {
for _, ext := range extensions {
// See https://github.com/thecodingmachine/gotenberg/issues/228.
// See https://github.com/gotenberg/gotenberg/issues/228.
if strings.ToLower(filepath.Ext(filename)) == ext {
*target = append(*target, path)
}
}
}
// See https://github.com/thecodingmachine/gotenberg/issues/139.
// See https://github.com/gotenberg/gotenberg/issues/139.
sort.Strings(*target)
return form