We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 961530e commit 70063f5Copy full SHA for 70063f5
1 file changed
lib/Domain/Pages/PageRanges.cs
@@ -13,6 +13,7 @@
13
// See the License for the specific language governing permissions and
14
// limitations under the License.
15
16
+using System.Globalization;
17
using System.Text.RegularExpressions;
18
19
namespace Gotenberg.Sharp.API.Client.Domain.Pages;
@@ -92,12 +93,12 @@ private string GetPageRangeString()
92
93
}
94
else
95
{
- ranges.Add(start == end ? start.ToString() : $"{start}-{end}");
96
+ ranges.Add(start == end ? start.ToString(CultureInfo.InvariantCulture) : $"{start}-{end}");
97
start = end = page;
98
99
100
101
102
return string.Join(", ", ranges);
103
104
0 commit comments