Skip to content

Commit

Permalink
Merge branch 'release/0.23.12/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
pixlwave committed Jul 13, 2022
2 parents b3359bd + f76cc10 commit f60967f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 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.12 (2022-07-13)

🐛 Bugfixes

- Fix JingleCallStack UI threading crashes ([#6415](https://github.com/vector-im/element-ios/issues/6415))


## Changes in 0.23.11 (2022-07-12)

✨ Features
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.11"
s.version = "0.23.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.23.11";
NSString *const MatrixSDKVersion = @"0.23.12";
5 changes: 1 addition & 4 deletions MatrixSDK/VoIP/MXCall.m
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@ @interface MXCall ()
Operation queue to collect operations before turn server response received.
*/
NSOperationQueue *callStackCallOperationQueue;

dispatch_queue_t callStackCallDispatchQueue;
}

/**
Expand Down Expand Up @@ -161,11 +159,10 @@ - (instancetype)initWithRoomId:(NSString *)roomId callSignalingRoomId:(NSString

callStackCall.delegate = self;

callStackCallDispatchQueue = dispatch_queue_create("org.matrix.sdk.MXCall.queue", DISPATCH_QUEUE_SERIAL);
callStackCallOperationQueue = [[NSOperationQueue alloc] init];
callStackCallOperationQueue.qualityOfService = NSQualityOfServiceUserInteractive;
callStackCallOperationQueue.maxConcurrentOperationCount = 1;
callStackCallOperationQueue.underlyingQueue = callStackCallDispatchQueue;
callStackCallOperationQueue.underlyingQueue = dispatch_get_main_queue();
callStackCallOperationQueue.suspended = YES;

// Set up TURN/STUN servers if we have them
Expand Down

0 comments on commit f60967f

Please sign in to comment.