Compare commits

...

2 Commits

Author SHA1 Message Date
Moxie Marlinspike
0ca8a480c5 Bump version to 2.9.2
// FREEBIE
2015-03-27 15:29:54 -07:00
Jake McGinty
349faf18fa Fix missing timestamp in SendReq
// FREEBIE
2015-03-27 15:02:01 -07:00
2 changed files with 7 additions and 3 deletions

View File

@@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.thoughtcrime.securesms"
android:versionCode="104"
android:versionName="2.9.1">
android:versionCode="105"
android:versionName="2.9.2">
<permission android:name="org.thoughtcrime.securesms.ACCESS_SECRETS"
android:label="Access to TextSecure Secrets"

View File

@@ -53,7 +53,11 @@ public abstract class SendJob extends MasterSecretJob {
} catch (MmsException me) {
throw new UndeliverableMessageException(me);
}
return new SendReq(message.getPduHeaders(), body);
return new SendReq(message.getPduHeaders(),
body,
message.getDatabaseMessageId(),
message.getDatabaseMessageBox(),
message.getSentTimestamp());
}
private PduPart getResolvedPart(MasterSecret masterSecret, MediaConstraints constraints,