mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
Add GitHub issue link to code comment explaining case-insensitive lookup
Co-authored-by: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com>
This commit is contained in:
parent
fcc0f9a765
commit
975ce249b7
|
|
@ -45,6 +45,7 @@ public partial class DataDump
|
|||
|
||||
// Try to find the index file with case-insensitive search
|
||||
// Discord changed the structure from "messages/index.json" to "Messages/index.json"
|
||||
// https://github.com/Tyrrrz/DiscordChatExporter/issues/1458
|
||||
var entry = archive.Entries.FirstOrDefault(e =>
|
||||
e.FullName.Equals("messages/index.json", StringComparison.OrdinalIgnoreCase)
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue