Skip to content
Snippets Groups Projects
Commit 50ce5e19 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Avoid spurious re-launch of first pending requested descriptor

svn:r5439
parent 8182eb69
No related branches found
No related tags found
No related merge requests found
......@@ -2946,8 +2946,9 @@ router_list_downloadable(void)
!conn->marked_for_close) {
if (!strcmpstart(conn->requested_resource, "all"))
n_downloadable = 0;
dir_split_resource_into_fingerprints(conn->requested_resource,
downloading, NULL, 1);
if (!strcmpstart(conn->requested_resource, "fp/"))
dir_split_resource_into_fingerprints(conn->requested_resource+3,
downloading, NULL, 1);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment