serve webdav: fix running duplicate Serve call

Before this change we were starting the server twice for webdav which
is inefficient and causes problems at exit.
This commit is contained in:
Nick Craig-Wood 2022-12-22 16:55:17 +00:00
parent 823d89af9a
commit b1b62f70d3
1 changed files with 0 additions and 2 deletions

View File

@ -199,8 +199,6 @@ func newWebDAV(ctx context.Context, f fs.Fs, opt *Options) (w *WebDAV, err error
router.Method(method, "/*", w)
}
w.Server.Serve()
return w, nil
}