Skip to content

Commit 395d41d

Browse files
committed
chore: Fix syntax error by adding a missing comma in from_protobuf function
1 parent 9f251dc commit 395d41d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

history-fetcher/src/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl PlayerMatchHistoryEntry {
3131
pub(crate) fn from_protobuf(
3232
account_id: u32,
3333
entry: c_msg_client_to_gc_get_match_history_response::Match,
34-
username: String
34+
username: String,
3535
) -> Option<Self> {
3636
Some(Self {
3737
account_id,

0 commit comments

Comments
 (0)