Move string formatting to Tools.

Revert contacts tracking from MatrixKit.
Final tweaks before PR.
This commit is contained in:
Doug
2021-12-07 15:08:48 +00:00
parent 299cc8bc74
commit ecd4bbd63b
23 changed files with 142 additions and 151 deletions
+5 -7
View File
@@ -165,13 +165,6 @@ extension Analytics {
func trackIdentityServerAccepted(_ accepted: Bool) {
// Do we still want to track this?
}
/// Track whether the user granted or rejected access to the device contacts.
/// **Note** This method isn't currently implemented.
/// - Parameter granted: Whether access was granted.
func trackContactsAccessGranted(_ granted: Bool) {
// Do we still want to track this?
}
}
// MARK: - MXAnalyticsDelegate
@@ -217,4 +210,9 @@ extension Analytics: MXAnalyticsDelegate {
let event = AnalyticsEvent.JoinedRoom(isDM: isDM, roomSize: roomSize)
capture(event: event)
}
/// **Note** This method isn't currently implemented.
func trackContactsAccessGranted(_ granted: Bool) {
// Do we still want to track this?
}
}