Skip to content

Commit 2dfe74b

Browse files
Change type of Fields::workratio to i64
I encountered a value that doesn't fit into an i32 in the field. This change fixes the parse error.
1 parent 7b09d8a commit 2dfe74b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/issue_model.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pub struct Fields {
7474
pub aggregatetimeoriginalestimate: Option<i32>,
7575
pub progress: Progress,
7676
pub aggregateprogress: Progress,
77-
pub workratio: i32,
77+
pub workratio: i64,
7878
pub summary: String,
7979
pub creator: User,
8080
pub project: Project,

0 commit comments

Comments
 (0)