Merged in revid/httpaddress (pull request #32)

revid: use correct address for HTTP
This commit is contained in:
kortschak 2018-06-18 22:49:24 +00:00 committed by Alan Noble
commit 74a2891ed7
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ func (r *Revid) reset(config Config) error {
}
r.destination = s
case Http:
r.destination = newHttpSender(config.RtmpUrl, httpTimeout, r.Log)
r.destination = newHttpSender(config.HttpAddress, httpTimeout, r.Log)
}
switch r.config.Input {