mirror of
1
Fork 0

Pass unvalidated input to field

This commit is contained in:
erik 2024-04-12 14:24:38 +02:00
parent feca77b040
commit f3e58f29b0
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ func newActorID(uri string) (ActorID, error) {
result.Host = validatedURI.Hostname()
result.Path = pathWithoutActorID
result.Port = validatedURI.Port()
result.UnvalidatedInput = validatedURI.String() // ToDo: Whats happening here?
result.UnvalidatedInput = uri
return result, nil
}