Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/models/commits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ pub struct Commit {
pub node_id: String,
pub parents: Vec<CommitParent>,
/// Minimal Repository
pub repository: MinimalRepository,
pub score: f64,
pub repository: Option<MinimalRepository>,
pub score: Option<f64>,
pub sha: String,
pub text_matches: Option<Vec<SearchResultTextMatch>>,
pub url: Url,
Expand Down
Loading