Skip to content

Commit

Permalink
Merge branch 'release/0.26.12/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
pixlwave committed Jun 21, 2023
2 parents b18527d + 44cca11 commit 94d8e25
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 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.26.12 (2023-06-21)

🐛 Bugfixes

- Ignore push rules with unknown condition kinds ([#7601](https://github.com/vector-im/element-ios/issues/7601))


## Changes in 0.26.11 (2023-06-13)

🙌 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.26.11"
s.version = "0.26.12"
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.26.11";
NSString *const MatrixSDKVersion = @"0.26.12";
1 change: 1 addition & 0 deletions MatrixSDK/NotificationCenter/MXNotificationCenter.m
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ - (MXPushRule *)ruleMatchingEvent:(MXEvent *)event roomState:(MXRoomState*)roomS
{
MXLogDebug(@"[MXNotificationCenter] Warning: There is no MXPushRuleConditionChecker to check condition of kind: %@", condition.kind);
conditionsOk = NO;
break; // Don't go further as we cannot guarantee that this rule matches
}
}
break;
Expand Down

0 comments on commit 94d8e25

Please sign in to comment.