mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
Fix formatting
This commit is contained in:
parent
008c2e64aa
commit
b2ac5d8b45
|
|
@ -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…
Reference in a new issue