[ https://issues.apache.org/jira/browse/CMIS-1018?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Gabriele Fusacchia updated CMIS-1018: ------------------------------------- Comment: was deleted (was: I downloaded this: https://github.com/apache/chemistry-portcmis/releases/tag/chemistry-portcmis-0.2 and the the code in BrowserBinding.cs (at \binding\browser ) still has the line 520 with the wrong version) > Converting BigInteger to string when 0 yields string.Empty > ---------------------------------------------------------- > > Key: CMIS-1018 > URL: https://issues.apache.org/jira/browse/CMIS-1018 > Project: Chemistry > Issue Type: Bug > Components: portcmis > Reporter: Johannes Schacht > Assignee: Florian Müller > > In url.cs, line 165, I needed this change: > {code:title=Wrong|borderStyle=solid} > return ((BigInteger)value).ToString("#", CultureInfo.InvariantCulture); > {code} > {code:title=Corrected|borderStyle=solid} > return ((BigInteger)value).ToString("0", CultureInfo.InvariantCulture); > {code} -- This message was sent by Atlassian JIRA (v6.3.15#6346)