diff --git a/src/Paket.Core/NuGetV2.fs b/src/Paket.Core/NuGetV2.fs index 8fbb66168a..97a1cb43fc 100644 --- a/src/Paket.Core/NuGetV2.fs +++ b/src/Paket.Core/NuGetV2.fs @@ -42,6 +42,7 @@ let rec private followODataLink auth url = |> getNodes "link" |> List.filter (fun node -> node |> getAttribute "rel" = Some "next") |> List.choose (getAttribute "href") + |> List.filter (fun x -> x <> url) |> List.map (followODataLink auth) |> Async.Parallel