Bump to libsignal v0.94.0

This commit is contained in:
andrew-signal
2026-05-11 11:10:15 -04:00
committed by Michelle Tang
parent 155bba2f81
commit b4404bb5b4
5 changed files with 15 additions and 15 deletions
@@ -76,7 +76,7 @@ public class TextSecureSessionStore implements SignalServiceSessionStore {
try (SignalSessionLock.Lock unused = ReentrantSessionLock.INSTANCE.acquire()) {
SessionRecord sessionRecord = SignalDatabase.sessions().load(accountId, address);
return sessionRecord != null && sessionRecord.hasSenderChain();
return sessionRecord != null && sessionRecord.hasSenderChain(0.0);
}
}
@@ -188,6 +188,6 @@ public class TextSecureSessionStore implements SignalServiceSessionStore {
}
private static boolean isActive(@Nullable SessionRecord record) {
return record != null && record.hasSenderChain();
return record != null && record.hasSenderChain(0.0);
}
}
@@ -76,7 +76,7 @@ class BufferedSessionStore(private val selfServiceId: ServiceId) : SignalService
if (fromDatabase != null) {
store[address] = fromDatabase
return fromDatabase.hasSenderChain()
return fromDatabase.hasSenderChain(0.0)
} else {
false
}