Skip to content

Commit

Permalink
Merge branch 'release/0.23.15/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
pixlwave committed Aug 10, 2022
2 parents 7a69ef4 + b4897bb commit a68cb3e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Changes in 0.23.15 (2022-08-10)

🐛 Bugfixes

- MXSpaceService: Fix a crash on Synapse 1.65 following changes to the /hierarchy API. ([#6547](https://github.com/vector-im/element-ios/issues/6547))


## Changes in 0.23.14 (2022-08-09)

🙌 Improvements
Expand Down
2 changes: 1 addition & 1 deletion MatrixSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "MatrixSDK"
s.version = "0.23.14"
s.version = "0.23.15"
s.summary = "The iOS SDK to build apps compatible with Matrix (https://www.matrix.org)"

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion MatrixSDK/MatrixSDKVersion.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

#import <Foundation/Foundation.h>

NSString *const MatrixSDKVersion = @"0.23.14";
NSString *const MatrixSDKVersion = @"0.23.15";
6 changes: 3 additions & 3 deletions MatrixSDK/Space/MXSpaceService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -376,12 +376,12 @@ public class MXSpaceService: NSObject {
spaceChildEventsPerChildRoomId[event.stateKey] = event.wireContent

var parentIds = parentIdsPerChildRoomId[event.stateKey] ?? Set()
parentIds.insert(event.roomId)
parentIds.insert(room.roomId)
parentIdsPerChildRoomId[event.stateKey] = parentIds

var childrenIds = childrenIdsPerChildRoomId[event.roomId] ?? []
var childrenIds = childrenIdsPerChildRoomId[room.roomId] ?? []
childrenIds.append(event.stateKey)
childrenIdsPerChildRoomId[event.roomId] = childrenIds
childrenIdsPerChildRoomId[room.roomId] = childrenIds
}
}

Expand Down

0 comments on commit a68cb3e

Please sign in to comment.