diff pkg/imports/fa.go @ 4799:f32d086b5dbf

Removed the mechanical touch of the last commit.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 25 Oct 2019 18:40:37 +0200
parents ca6a5f722471
children 046a07a33b19
line wrap: on
line diff
--- a/pkg/imports/fa.go	Fri Oct 25 18:25:38 2019 +0200
+++ b/pkg/imports/fa.go	Fri Oct 25 18:40:37 2019 +0200
@@ -21,7 +21,6 @@
 	"errors"
 	"fmt"
 	"sort"
-	"strings"
 	"time"
 
 	"github.com/jackc/pgx/pgtype"
@@ -162,11 +161,7 @@
 )
 
 func (fa *FairwayAvailability) Description() (string, error) {
-
-	var descs []string
-
-	descs = append(descs, fa.URL)
-	return strings.Join(descs, "|"), nil
+	return fa.URL, nil
 }
 
 type faJobCreator struct{}