fix for retry to decode shortened URI if we got null response

This commit is contained in:
Simon Grim 2016-05-05 09:32:45 +05:00
parent c93474d3d5
commit 572242e0c1

View File

@ -896,7 +896,7 @@ function fetchShortenedURI(req, attemptCount) {
if ((req.attemptCount ? ++req.attemptCount : req.attemptCount = 1) < 3) // < $.Options.decodeShortURITriesMax
fetchShortenedURI(req.shortURI, req.attemptCount);
}
}, {short: req, attemptCount: attemptCount}
}, {shortURI: req, attemptCount: attemptCount}
);
}