(trunk web) use "===" instead of "==" when appropriate.

This commit is contained in:
Jordan Lee
2011-09-05 07:46:55 +00:00
parent 651bc99ad8
commit 442d9fbea9
7 changed files with 44 additions and 45 deletions

View File

@@ -69,7 +69,7 @@ TransmissionRemote.prototype =
remote = this;
// set the Transmission-Session-Id on a 409
if (request.status == 409 && (token = request.getResponseHeader('X-Transmission-Session-Id'))){
if (request.status === 409 && (token = request.getResponseHeader('X-Transmission-Session-Id'))){
remote._token = token;
$.ajax(ajaxObject);
return;