From 26a5fffcca112375ceeff47e4f55b282aa136d9c Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Fri, 21 Nov 2014 00:04:45 -0600 Subject: [PATCH] Fix accidental pass by value --- download_strategies.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download_strategies.go b/download_strategies.go index e0e79814..a21321b2 100644 --- a/download_strategies.go +++ b/download_strategies.go @@ -217,7 +217,7 @@ func (me *requestFiller) priorities() bool { } // Fill requests, with all contextual information available in the receiver. -func (me requestFiller) Run() { +func (me *requestFiller) Run() { if !me.priorities() { return } -- 2.48.1