Remove unused field on CommitDetails (#10783)

Release Notes:


- N/A
This commit is contained in:
Thorsten Ball 2024-04-19 18:34:38 +02:00 committed by GitHub
parent 13c17267b9
commit 70427daed2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,7 +75,6 @@ pub struct CommitDetails {
pub message: String,
pub parsed_message: ParsedMarkdown,
pub permalink: Option<Url>,
pub avatar_url: Option<Url>,
pub remote: Option<GitRemote>,
}
@ -446,7 +445,6 @@ async fn parse_commit_messages(
parsed_message,
permalink,
remote,
avatar_url: None,
},
);
}