Stop parsing attachment ids from attachment urls

See 2111294

Attachment ids are now available in string form from the server
response to `putAttachment`.

// FREEBIE
pull/749/head
lilia 8 years ago
parent e4a84d6850
commit f1a1a819ba

@ -37889,7 +37889,7 @@ var TextSecureServer = (function() {
data : encryptedBin,
processData : false,
}).then(function() {
return match[1];
return response.idString;
}.bind(this));
}.bind(this));
},

@ -391,7 +391,7 @@ var TextSecureServer = (function() {
data : encryptedBin,
processData : false,
}).then(function() {
return match[1];
return response.idString;
}.bind(this));
}.bind(this));
},

Loading…
Cancel
Save