[tor-commits] [flashproxy/master] Replace a magic number.

dcf at torproject.org dcf at torproject.org
Mon Apr 9 04:08:42 UTC 2012


commit dabbd5e747fb638155a61bb8f88a31bb511c83e0
Author: David Fifield <david at bamsoftware.com>
Date:   Sat Mar 31 15:10:03 2012 -0700

    Replace a magic number.
---
 flashproxy.js |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/flashproxy.js b/flashproxy.js
index bdec17d..7b8b0bc 100644
--- a/flashproxy.js
+++ b/flashproxy.js
@@ -202,8 +202,7 @@ function FlashProxy()
         }
         xhr.responseType = "text";
         xhr.onreadystatechange = function() {
-            /* Status 4 is DONE. */
-            if (xhr.readyState == 4) {
+            if (xhr.readyState == xhr.DONE) {
                 if (xhr.status == 200)
                     this.fac_complete(xhr.responseText);
                 else if (xhr.status == 0 && xhr.statusText == "")





More information about the tor-commits mailing list