From a826a5a0f3f36d574871175a7e3eef89e0a09069 Mon Sep 17 00:00:00 2001 From: Henning Date: Fri, 26 Dec 2025 15:56:25 +0100 Subject: [PATCH] Fix formatting issue in XOAuth2 struct constructor --- src/db/models/xoauth2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/models/xoauth2.rs b/src/db/models/xoauth2.rs index 263db9bd..c4207b28 100644 --- a/src/db/models/xoauth2.rs +++ b/src/db/models/xoauth2.rs @@ -16,7 +16,7 @@ impl XOAuth2 { pub fn new(id: String, refresh_token: String) -> Self { Self { id, - refresh_token + refresh_token, } }