Remove todo

This commit is contained in:
erik 2023-12-07 10:51:58 +01:00 committed by Michael Jerger
parent 54ef78034e
commit 085db0c127

View file

@ -92,7 +92,7 @@ func (a ActorID) GetUserId() int {
return result
}
func (a ActorID) GetNormalizedUri() string { // ToDo: Port might be empty
func (a ActorID) GetNormalizedUri() string {
result := fmt.Sprintf("%s://%s:%s/%s/%s", a.schema, a.host, a.port, a.path, a.userId)
return result
}