This repository was archived by the owner on Jan 10, 2024. It is now read-only.

Description
The signature for the function is
forcetk.Client.prototype.blob = function(path, fields, filename, payloadField, payload, callback, error, retry) {
But when the blob is called, the variable name is changed
} else if(request.status == 401 && !retry) {
that.refreshAccessToken(function(oauthResponse) {
that.setSessionToken(oauthResponse.access_token, null,oauthResponse.instance_url);
that.blob(path, fields, fileName, file, callback, error, true);
},
error);
} else {
A quick search of the file shows that fileName does not occur anywhere else in the file (and my linter agrees).