mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[ArchiveTools] Yet one more null check
This commit is contained in:
@@ -420,7 +420,7 @@ namespace SabreTools.Helper.Tools
|
|||||||
Rom possibleTgz = GetTorrentGZFileInfo(input, logger);
|
Rom possibleTgz = GetTorrentGZFileInfo(input, logger);
|
||||||
|
|
||||||
// If it was, then add it to the outputs and continue
|
// If it was, then add it to the outputs and continue
|
||||||
if (possibleTgz.Name != null)
|
if (possibleTgz != null && possibleTgz.Name != null)
|
||||||
{
|
{
|
||||||
roms.Add(possibleTgz);
|
roms.Add(possibleTgz);
|
||||||
return roms;
|
return roms;
|
||||||
|
|||||||
Reference in New Issue
Block a user