Update libsignal-service

This commit is contained in:
AsamK 2025-11-14 19:52:32 +01:00
parent 62811d92c5
commit c2ac74a6be
3 changed files with 4 additions and 3 deletions

View File

@ -11,7 +11,7 @@ slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
slf4j-jul = { module = "org.slf4j:jul-to-slf4j", version.ref = "slf4j" }
logback = "ch.qos.logback:logback-classic:1.5.20"
signalservice = "com.github.turasa:signal-service-java:2.15.3_unofficial_133"
signalservice = "com.github.turasa:signal-service-java:2.15.3_unofficial_134"
sqlite = "org.xerial:sqlite-jdbc:3.50.3.0"
hikari = "com.zaxxer:HikariCP:7.0.2"
junit-jupiter-bom = { module = "org.junit:junit-bom", version.ref = "junit" }

View File

@ -154,7 +154,7 @@ public class SyncHelper {
try {
try (OutputStream fos = new FileOutputStream(contactsFile)) {
var out = new DeviceContactsOutputStream(fos, false);
var out = new DeviceContactsOutputStream(fos, false, true);
for (var contactPair : account.getContactStore().getContacts()) {
final var recipientId = contactPair.first();
final var contact = contactPair.second();

View File

@ -329,7 +329,8 @@ public class SignalDependencies {
executor,
ServiceConfig.MAX_ENVELOPE_SIZE,
() -> true,
false));
false,
true));
}
public List<SecureValueRecovery> getSecureValueRecovery() {