CORS bug fix #28

Merged
phoenix merged 5 commits from cors_fix into main 2026-06-30 11:55:32 -04:00
Showing only changes of commit aae52254b9 - Show all commits
+1 -1
View File
@@ -204,7 +204,7 @@ pub async fn test_token() -> Result<String, josekit::JoseError> {
};
match textsender_models::token::create_token(&key, &token_resource, time::Duration::hours(1)) {
Ok((access_token, _some_time)) => Ok(access_token),
Ok(access_token) => Ok(access_token.access_token),
Err(err) => Err(err),
}
}