File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -190,9 +190,10 @@ pub async fn config_sync(
190
190
if let Some ( client_secret) = provider. client_secret . as_deref ( ) {
191
191
Some ( encrypter. encrypt_to_string ( client_secret. as_bytes ( ) ) ?)
192
192
} else if let Some ( mut siwa) = provider. sign_in_with_apple . clone ( ) {
193
- // if private key file is defined and not private key (raw), we populate the private key
194
- // to hold the content of the private key file. private key (raw) takes precedence so
195
- // both can be defined without issues
193
+ // if private key file is defined and not private key (raw), we populate the
194
+ // private key to hold the content of the private key file.
195
+ // private key (raw) takes precedence so both can be defined
196
+ // without issues
196
197
if siwa. private_key . is_none ( ) {
197
198
if let Some ( private_key_file) = siwa. private_key_file . take ( ) {
198
199
let key = tokio:: fs:: read_to_string ( private_key_file) . await ?;
You can’t perform that action at this time.
0 commit comments