Skip to content

Commit

Permalink
Merge pull request #10 from bcgov/dev
Browse files Browse the repository at this point in the history
fix: compiler error
  • Loading branch information
ychung-mot authored Mar 14, 2024
2 parents 8cb1ff6 + 662cdcd commit cc52a3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/StrDss.Common/CommonExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public static string GetStringAfterLastDot(this string input)
return lastDotIndex >= 0 ? input.Substring(lastDotIndex + 1) : input;
}

public static string GetStringBeforeDot(string input)
public static string GetStringBeforeFirstDot(this string input)
{
if (input.IsEmpty()) return "";

Expand Down

0 comments on commit cc52a3b

Please sign in to comment.