Remove duplicate case statement

This line was never being hit due to the duplicate one above (#L166).
Peeking at the server code shows that 403 is only given in response to
registration attempts, where it does in fact indicate an invalid code.

// FREEBIE
This commit is contained in:
lilia 2015-12-05 11:02:50 -08:00
parent 37edf47800
commit 9c59dfda93
2 changed files with 0 additions and 2 deletions

View file

@ -36354,7 +36354,6 @@ var TextSecureServer = (function() {
message = "Number already registered.";
break;
case 401:
case 403:
message = "Invalid authentication, most likely someone re-registered and invalidated our registration.";
break;
case 404:

View file

@ -171,7 +171,6 @@ var TextSecureServer = (function() {
message = "Number already registered.";
break;
case 401:
case 403:
message = "Invalid authentication, most likely someone re-registered and invalidated our registration.";
break;
case 404: