We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e799b57 commit f3e4cccCopy full SHA for f3e4ccc
api/v2beta1/atom_conversion.go
@@ -26,6 +26,7 @@ package v2beta1
26
27
import (
28
"log"
29
+ "net/url"
30
"strconv"
31
"time"
32
@@ -322,7 +323,7 @@ func (a *Atom) ConvertFrom(srcRaw conversion.Hub) error {
322
323
}
324
325
func createBaseURL(host string, general General) (*smoothoperatormodel.URL, error) {
- baseURL, err := smoothoperatormodel.ParseURL(host)
326
+ baseURL, err := url.Parse(host)
327
if err != nil {
328
return nil, err
329
0 commit comments