Fix blocking bugs for internal link and sync testing.

This commit is contained in:
Cody Henthorne
2025-10-08 16:09:01 -04:00
parent 33a7f55fa3
commit f8eaa96412
27 changed files with 212 additions and 124 deletions

View File

@@ -74,6 +74,11 @@ public final class ProfileUtil {
*/
@WorkerThread
public static void handleSelfProfileKeyChange() {
if (SignalStore.account().isLinkedDevice()) {
Log.i(TAG, "Linked devices shouldn't rotate self profile key after initial link");
return;
}
List<Job> gv2UpdateJobs = SignalDatabase.groups()
.getAllGroupV2Ids()
.stream()