mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 16:55:16 +00:00
Pass unvalidated input to field
This commit is contained in:
parent
feca77b040
commit
f3e58f29b0
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue