exp/rvcl: remove nil option from netsender

This was a programmer's mistake.

Approved-by: Alan Noble
This commit is contained in:
Trek Hopton 2023-10-18 07:49:11 +00:00
commit 3bb8d0bde2
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 // Create a netsender client. This is used only for HTTP sending of media
// in this binary. // in this binary.
ns, err := netsender.New(log, nil, nil, nil, nil) ns, err := netsender.New(log, nil, nil, nil)
if err != nil { if err != nil {
log.Fatal("could not initialise netsender client", "error", err) log.Fatal("could not initialise netsender client", "error", err)
} }