Skip to content

Commit

Permalink
Merge pull request #1262 from matrix-org/gil/4570_home_space_data_fil…
Browse files Browse the repository at this point in the history
…tering

[Spaces] M10.4.1 Home space data filtering #4570
  • Loading branch information
gileluard committed Oct 18, 2021
2 parents 6a144c5 + 071a2b9 commit 8726474
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MatrixSDK/Space/MXSpaceService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extension MXSpaceServiceError: CustomNSError {
// MARK: - MXSpaceService notification constants
extension MXSpaceService {
/// Posted once the first graph as been built or loaded
public static let didInitialised = Notification.Name("MXSpaceServiceDidInitialised")
public static let didInitialise = Notification.Name("MXSpaceServiceDidInitialise")

/// Posted once the graph of rooms is up and running
public static let didBuildSpaceGraph = Notification.Name("MXSpaceServiceDidBuildSpaceGraph")
Expand Down Expand Up @@ -99,7 +99,7 @@ public class MXSpaceService: NSObject {
didSet {
if !oldValue && isInitialised {
self.completionQueue.async {
NotificationCenter.default.post(name: MXSpaceService.didInitialised, object: self)
NotificationCenter.default.post(name: MXSpaceService.didInitialise, object: self)
}
}
}
Expand Down

0 comments on commit 8726474

Please sign in to comment.