mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-12-04 17:17:09 +00:00
Merge pull request #169 from 13xforever/vnext
Hotfix for the new corrupted dumps
This commit is contained in:
commit
3205a499be
@ -371,7 +371,7 @@ namespace CompatBot.Utils.ResultFormatters
|
||||
{
|
||||
BuildWeirdSettingsSection(builder, items);
|
||||
BuildMissingLicensesSection(builder, items);
|
||||
var brokenDump = !string.IsNullOrEmpty("edat_block_offset") || await HasBrokenFilesAsync(items).ConfigureAwait(false);
|
||||
var brokenDump = !string.IsNullOrEmpty(items["edat_block_offset"]) || await HasBrokenFilesAsync(items).ConfigureAwait(false);
|
||||
var elfBootPath = items["elf_boot_path"] ?? "";
|
||||
var isEboot = !string.IsNullOrEmpty(elfBootPath) && elfBootPath.EndsWith("EBOOT.BIN", StringComparison.InvariantCultureIgnoreCase);
|
||||
var isElf = !string.IsNullOrEmpty(elfBootPath) && !elfBootPath.EndsWith("EBOOT.BIN", StringComparison.InvariantCultureIgnoreCase);
|
||||
|
Loading…
Reference in New Issue
Block a user