mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-09 11:51:59 -04:00
Fix formatting
This commit is contained in:
parent
008c2e64aa
commit
b2ac5d8b45
1 changed files with 2 additions and 1 deletions
|
@ -39,7 +39,8 @@ public partial record struct Snowflake
|
|||
}
|
||||
|
||||
public static Snowflake Parse(string value, IFormatProvider? formatProvider) =>
|
||||
TryParse(value, formatProvider) ?? throw new FormatException($"Invalid snowflake '{value}'.");
|
||||
TryParse(value, formatProvider)
|
||||
?? throw new FormatException($"Invalid snowflake '{value}'.");
|
||||
|
||||
public static Snowflake Parse(string value) => Parse(value, null);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue