Skip to content

Commit

Permalink
Merge branch 'release/0.27.2/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanceriu committed Sep 12, 2023
2 parents 8ada89c + d6448db commit 3b93a03
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 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.27.2 (2023-09-12)

🐛 Bugfixes

- Fix | QR code verification failing due to incorrect encoding padding ([#1816](https://github.com/vector-im/element-ios/issues/1816))


## Changes in 0.27.1 (2023-08-29)

✨ 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.27.1"
s.version = "0.27.2"
s.summary = "The iOS SDK to build apps compatible with Matrix (https://www.matrix.org)"

s.description = <<-DESC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class MXQRCodeTransactionV2: NSObject, MXQRCodeTransaction {
log.debug("->")

let data = MXQRCodeDataCoder().encode(otherQRCodeData)
let string = MXBase64Tools.base64(from: data)
let string = MXBase64Tools.unpaddedBase64(from: data)
guard let result = request.scanQrCode(data: string) else {
log.failure("Failed scanning QR code")
return
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.27.1";
NSString *const MatrixSDKVersion = @"0.27.2";

0 comments on commit 3b93a03

Please sign in to comment.