From b53973555e620063e71c343d4aa1b45708b290dc Mon Sep 17 00:00:00 2001 From: cyprain-okeke <108260115+cyprain-okeke@users.noreply.github.com> Date: Wed, 24 May 2023 16:56:37 +0100 Subject: [PATCH] Fix the unable to create paid organizations error (#2957) --- .../Implementations/StripePaymentService.cs | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/Core/Services/Implementations/StripePaymentService.cs b/src/Core/Services/Implementations/StripePaymentService.cs index b2f5e87f84..40d905a8b1 100644 --- a/src/Core/Services/Implementations/StripePaymentService.cs +++ b/src/Core/Services/Implementations/StripePaymentService.cs @@ -1820,6 +1820,19 @@ public class StripePaymentService : IPaymentService // We are taking only first 30 characters of the SubscriberName because stripe provide // for 30 characters for custom_fields,see the link: https://stripe.com/docs/api/invoices/create - private static string GetFirstThirtyCharacters(string subscriberName) => string.IsNullOrWhiteSpace(subscriberName) ? "" : subscriberName.Substring(0, 30); - + public static string GetFirstThirtyCharacters(string subscriberName) + { + if (string.IsNullOrWhiteSpace(subscriberName)) + { + return ""; + } + else if (subscriberName.Length <= 30) + { + return subscriberName; + } + else + { + return subscriberName.Substring(0, 30); + } + } }