mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 02:55:23 +00:00
1bbcedabd4
1) Added SMS transport support. 2) Keep track of whether a PreKeyBundle message has gotten a response, and send them as subsequent messages until one has been received.
9 lines
226 B
Java
9 lines
226 B
Java
package org.thoughtcrime.securesms.protocol;
|
|
|
|
public class PrekeyBundleWirePrefix extends WirePrefix {
|
|
@Override
|
|
public String calculatePrefix(String message) {
|
|
return super.calculatePreKeyBundlePrefix(message);
|
|
}
|
|
}
|