fix oidc login

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou
2023-05-30 15:32:19 +08:00
parent b9fd9f343f
commit c28387c8c6
6 changed files with 93 additions and 23 deletions

View File

@@ -822,8 +822,8 @@ fn check_connect_status(reconnect: bool) -> mpsc::UnboundedSender<ipc::Data> {
}
#[cfg(feature = "flutter")]
pub fn account_auth(op: String, id: String, uuid: String) {
account::OidcSession::account_auth(op, id, uuid);
pub fn account_auth(op: String, id: String, uuid: String, remember_me: bool) {
account::OidcSession::account_auth(op, id, uuid, remember_me);
}
#[cfg(feature = "flutter")]