Bugfix: Treating graph requests as edge requests.
diff --git a/infocalypse/requestingbundles.py b/infocalypse/requestingbundles.py
--- a/infocalypse/requestingbundles.py
+++ b/infocalypse/requestingbundles.py
@@ -348,6 +348,8 @@ class RequestingBundles(RetryingRequestL
def fixup(edges, candidate_list):
""" INTERNAL : Helper fixes up CHK->edges. """
for candidate in candidate_list:
+ if candidate[6]:
+ continue # Skip graph requests!
edge = edges[candidate[0]]
candidate[3] = edge
candidate[4] = None