# HG changeset patch # User Sascha L. Teichmann # Date 1550490007 -3600 # Node ID 9c4ef2345db40fd5558c74fd87fccb5ecc80187a # Parent ff947964c4ffa317daf2d267f3576ccf3dcde4ef Configured Imports: Fixed unmarshalling of WFS imports. diff -r ff947964c4ff -r 9c4ef2345db4 pkg/models/imports.go --- a/pkg/models/imports.go Mon Feb 18 12:17:00 2019 +0100 +++ b/pkg/models/imports.go Mon Feb 18 12:40:07 2019 +0100 @@ -129,7 +129,7 @@ } func (wi *WFSImport) UnmarshalAttributes(attrs common.Attributes) error { - if err := wi.URLType.UnmarshalAttributes(attrs); err != nil { + if err := wi.ConfigurableURLImport.UnmarshalAttributes(attrs); err != nil { return err } ft, found := attrs.Get("feature-type")