Stop parsing attachment ids from attachment urls
See 2111294
Attachment ids are now available in string form from the server
response to `putAttachment`.
// FREEBIE
This commit is contained in:
parent
e4a84d6850
commit
f1a1a819ba
2 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue