Compare commits

...

2 Commits

Author SHA1 Message Date
Moxie Marlinspike
c795a0119c Bump version to 1.2.3 2015-03-19 12:29:43 -07:00
lilia
9cada7e229 Fix provisioning flow
Make ProvisionMessage serializable. Previously the lack of jackson
annotations caused this object to serialize as empty string, which
elicits a 500 from the server.

Closes #3
2015-03-10 19:38:34 -07:00
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
subprojects {
ext.version_number = "1.2.2"
ext.version_number = "1.2.3"
ext.group_info = "org.whispersystems"
ext.axolotl_version = "1.3.1"

View File

@@ -1,7 +1,10 @@
package org.whispersystems.textsecure.internal.push;
import com.fasterxml.jackson.annotation.JsonProperty;
public class ProvisioningMessage {
@JsonProperty
private String body;
public ProvisioningMessage(String body) {