Skip to content

Commit

Permalink
Merge pull request #9 from redsquare/patch-1
Browse files Browse the repository at this point in the history
Tiny bugfix, missing object
  • Loading branch information
mythz committed Apr 23, 2012
2 parents 27a5070 + 1249ac4 commit 19b5309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RedisWebServices.Host/AjaxClient/js/ServiceStack.js
Expand Up @@ -220,7 +220,7 @@ JsonServiceClient.ajax = function(s) {
}
});

if (s.cache === false && type === "GET" )
if (s.cache === false && s.type === "GET" )
{
var ts = (new Date).getTime();
var ret = s.url.replace(rts, "$1_=" + ts + "$2");
Expand Down

0 comments on commit 19b5309

Please sign in to comment.