Skip to content

Commit

Permalink
Merge branch 'develop' into ismail/4384_room_summary_store
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailgulek committed Oct 19, 2021
2 parents f078799 + 8726474 commit d5387f7
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 d5387f7

Please sign in to comment.