You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unless I am mistaken, the intent of the code is to trim the Async suffix, yet it does the opposite, keeping only the Async
varbinderName="TestAsync";if(binderName.EndsWith("Async", StringComparison.Ordinal)){binderName= binderName[^"Async".Length..];
Debug.Assert(binderName!="Async","binderName is set to Async");}
Line 41 should be
binderName= binderName[..^"Async".Length];
The text was updated successfully, but these errors were encountered:
OrchardCore/src/OrchardCore/OrchardCore.DisplayManagement/Implementation/DefaultShapeFactory.cs
Lines 39 to 42 in 9a76299
Unless I am mistaken, the intent of the code is to trim the Async suffix, yet it does the opposite, keeping only the Async
Line 41 should be
The text was updated successfully, but these errors were encountered: