Merge branch 'release/1.0.13' into develop
This commit is contained in:
commit
2fe7caa580
23
CHANGES.md
23
CHANGES.md
|
@ -1,30 +1,9 @@
|
||||||
Changes in Element 1.0.13 (2020-XX-XX)
|
Changes in Element 1.0.13 (2020-12-18)
|
||||||
===================================================
|
===================================================
|
||||||
|
|
||||||
Features ✨:
|
|
||||||
-
|
|
||||||
|
|
||||||
Improvements 🙌:
|
|
||||||
-
|
|
||||||
|
|
||||||
Bugfix 🐛:
|
Bugfix 🐛:
|
||||||
- Fix MSC2858 implementation details (#2540)
|
- Fix MSC2858 implementation details (#2540)
|
||||||
|
|
||||||
Translations 🗣:
|
|
||||||
-
|
|
||||||
|
|
||||||
SDK API changes ⚠️:
|
|
||||||
-
|
|
||||||
|
|
||||||
Build 🧱:
|
|
||||||
-
|
|
||||||
|
|
||||||
Test:
|
|
||||||
-
|
|
||||||
|
|
||||||
Other changes:
|
|
||||||
-
|
|
||||||
|
|
||||||
Changes in Element 1.0.12 (2020-12-15)
|
Changes in Element 1.0.12 (2020-12-15)
|
||||||
===================================================
|
===================================================
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
Main changes in this version: URL Preview, new Emoji keyboard, new room settings capabilities, and snow for Christmas!
|
||||||
|
Full changelog: https://github.com/vector-im/element-android/releases/tag/v1.0.12
|
|
@ -93,7 +93,7 @@ internal class DefaultIdentityBulkLookupTask @Inject constructor(
|
||||||
} catch (failure: Throwable) {
|
} catch (failure: Throwable) {
|
||||||
// Catch invalid hash pepper and retry
|
// Catch invalid hash pepper and retry
|
||||||
if (canRetry && failure is Failure.ServerError && failure.error.code == MatrixError.M_INVALID_PEPPER) {
|
if (canRetry && failure is Failure.ServerError && failure.error.code == MatrixError.M_INVALID_PEPPER) {
|
||||||
// This is not documented, by the error can contain the new pepper!
|
// This is not documented, but the error can contain the new pepper!
|
||||||
if (!failure.error.newLookupPepper.isNullOrEmpty()) {
|
if (!failure.error.newLookupPepper.isNullOrEmpty()) {
|
||||||
// Store it and use it right now
|
// Store it and use it right now
|
||||||
hashDetailResponse.copy(pepper = failure.error.newLookupPepper)
|
hashDetailResponse.copy(pepper = failure.error.newLookupPepper)
|
||||||
|
|
Loading…
Reference in New Issue