File tree Expand file tree Collapse file tree
src/authentication/oauth/qrcode Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,6 +110,10 @@ All notable changes to this project will be documented in this file.
110110
111111### Bugfix
112112
113+ - Switch QR login implementation from ` std::time::Instant ` to ` ruma::time::Instant ` which
114+ is compatible with Wasm.
115+ ([ #5889 ] ( https://github.com/matrix-org/matrix-rust-sdk/pull/5889 ) )
116+
113117## [ 0.14.0] - 2025-09-04
114118
115119### Features
Original file line number Diff line number Diff line change 1212// See the License for the specific language governing permissions and
1313// limitations under the License.
1414
15- use std:: time:: { Duration , Instant } ;
15+ use std:: time:: Duration ;
1616
1717use eyeball:: SharedObservable ;
1818use futures_core:: Stream ;
@@ -24,6 +24,7 @@ use matrix_sdk_base::{
2424 } ,
2525} ;
2626use oauth2:: VerificationUriComplete ;
27+ use ruma:: time:: Instant ;
2728use url:: Url ;
2829#[ cfg( doc) ]
2930use vodozemac:: ecies:: CheckCode ;
You can’t perform that action at this time.
0 commit comments