Browse Source

Fix formatting issue in XOAuth2 struct constructor

pull/6388/head
Henning 2 weeks ago
parent
commit
a826a5a0f3
  1. 2
      src/db/models/xoauth2.rs

2
src/db/models/xoauth2.rs

@ -16,7 +16,7 @@ impl XOAuth2 {
pub fn new(id: String, refresh_token: String) -> Self { pub fn new(id: String, refresh_token: String) -> Self {
Self { Self {
id, id,
refresh_token refresh_token,
} }
} }

Loading…
Cancel
Save