From e5615ea788a4d3ff09ff7136f341a8452d6ea8de Mon Sep 17 00:00:00 2001 From: nielsandriesse Date: Mon, 28 Sep 2020 14:10:01 +1000 Subject: [PATCH] Fix build --- Signal/src/Loki/View Controllers/DeviceLinksVC.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Signal/src/Loki/View Controllers/DeviceLinksVC.swift b/Signal/src/Loki/View Controllers/DeviceLinksVC.swift index 1c0ff5b4f..3901eb4c9 100644 --- a/Signal/src/Loki/View Controllers/DeviceLinksVC.swift +++ b/Signal/src/Loki/View Controllers/DeviceLinksVC.swift @@ -150,7 +150,8 @@ final class DeviceLinksVC : BaseVC, UITableViewDataSource, UITableViewDelegate, storage.removePreKeyBundle(forContact: linkedDevicePublicKey, transaction: transaction) storage.deleteAllSessions(forContact: linkedDevicePublicKey, protocolContext: transaction) for groupPublicKey in Storage.getUserClosedGroupPublicKeys() { - ClosedGroupsProtocol.removeMembers([ linkedDevicePublicKey ], from: groupPublicKey, using: transaction) + // TODO: Possibly re-implement in the future + // ClosedGroupsProtocol.removeMembers([ linkedDevicePublicKey ], from: groupPublicKey, using: transaction) } } }, failure: { _ in @@ -160,7 +161,8 @@ final class DeviceLinksVC : BaseVC, UITableViewDataSource, UITableViewDelegate, storage.removePreKeyBundle(forContact: linkedDevicePublicKey, transaction: transaction) storage.deleteAllSessions(forContact: linkedDevicePublicKey, protocolContext: transaction) for groupPublicKey in Storage.getUserClosedGroupPublicKeys() { - ClosedGroupsProtocol.removeMembers([ linkedDevicePublicKey ], from: groupPublicKey, using: transaction) + // TODO: Possibly re-implement in the future + // ClosedGroupsProtocol.removeMembers([ linkedDevicePublicKey ], from: groupPublicKey, using: transaction) } } })