File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -186,6 +186,8 @@ public void WriteXml(XmlWriter writer)
186186 writer . WriteValueOrEmpty < decimal > ( Hours , RedmineKeys . HOURS ) ;
187187 writer . WriteIdIfNotNull ( Activity , RedmineKeys . ACTIVITY_ID ) ;
188188 writer . WriteElementString ( RedmineKeys . COMMENTS , Comments ) ;
189+
190+ writer . WriteArray ( CustomFields , RedmineKeys . CUSTOM_FIELDS ) ;
189191 }
190192
191193 public bool Equals ( TimeEntry other )
@@ -201,7 +203,7 @@ public bool Equals(TimeEntry other)
201203 && User == other . User
202204 && CreatedOn == other . CreatedOn
203205 && UpdatedOn == other . UpdatedOn
204- && ( CustomFields != null ? CustomFields . Equals < IssueCustomField > ( other . CustomFields ) : other . CustomFields == null ) ) ;
206+ && ( CustomFields != null ? CustomFields . Equals < IssueCustomField > ( other . CustomFields ) : other . CustomFields == null ) ) ;
205207 }
206208
207209 public override int GetHashCode ( )
You can’t perform that action at this time.
0 commit comments