exp/rvcl: remove nil option from netsender

This commit is contained in:
Trek H 2023-10-17 20:12:58 +10:30
parent 524e010fe1
commit 9131409d08
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ func main() {
// Create a netsender client. This is used only for HTTP sending of media
// in this binary.
ns, err := netsender.New(log, nil, nil, nil, nil)
ns, err := netsender.New(log, nil, nil, nil)
if err != nil {
log.Fatal("could not initialise netsender client", "error", err)
}