Fix missing port

This commit is contained in:
Richard Patel
2019-02-09 16:58:25 +01:00
parent c72f4ba475
commit 9bc3455ee0
3 changed files with 18 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ type WorkerContext struct {
}
func (w *WorkerContext) Prepare() {
w.client = newHTTPClient(&w.OD.BaseUri)
w.client = newHTTPClient(w.OD.BaseUri)
}
func (w *WorkerContext) Worker(results chan<- File) {