Don't auto-populate the relay field

According to server api docs, relay is optional when it is the same as
our own server.

// FREEBIE
This commit is contained in:
lilia 2015-08-07 16:39:04 -07:00
parent 7d9cf0c167
commit 184e37383c
2 changed files with 0 additions and 6 deletions

View file

@ -38900,7 +38900,6 @@ TextSecureServer = function () {
************************************************/
// Staging server
var URL_BASE = "https://textsecure-service-staging.whispersystems.org";
self.relay = "textsecure-service-staging.whispersystems.org";
var ATTACHMENT_HOST = "whispersystems-textsecure-attachments-staging.s3.amazonaws.com";
// This is the real server
@ -39151,8 +39150,6 @@ TextSecureServer = function () {
}
}
var jsonData = { messages: messageArray };
if (messageArray[0].relay !== undefined)
jsonData.relay = messageArray[0].relay;
jsonData.timestamp = messageArray[0].timestamp;
return doAjax({

View file

@ -12,7 +12,6 @@ TextSecureServer = function () {
************************************************/
// Staging server
var URL_BASE = "https://textsecure-service-staging.whispersystems.org";
self.relay = "textsecure-service-staging.whispersystems.org";
var ATTACHMENT_HOST = "whispersystems-textsecure-attachments-staging.s3.amazonaws.com";
// This is the real server
@ -263,8 +262,6 @@ TextSecureServer = function () {
}
}
var jsonData = { messages: messageArray };
if (messageArray[0].relay !== undefined)
jsonData.relay = messageArray[0].relay;
jsonData.timestamp = messageArray[0].timestamp;
return doAjax({