Hi,
we have updated to version 1.9.1.607 today. Running a build we get the following error which occurs, when creating e-mail notifications.
Error:
Liquid error: Das Objekt mit dem Typ “System.Int64” kann nicht in den Typ “System.Int32” konvertiert werden.
The error is caused by the usage of “truncate”.
The relevant part of the template:
{% assign sortedChangeSets = (Changesets | sort: "Created") -%}
{% for change in sortedChangeSets reversed -%}
<tr>
<td>
{{change.RepositoryChangeId | truncate: 10}}
</td>
The workaround is to remove the string part “| truncate 10”.
Thomas