Rename IsTorrent to IsStandardized

This commit is contained in:
Matt Nadareski
2025-01-04 21:42:46 -05:00
parent e5c0d55d18
commit c24fdfc534
8 changed files with 8 additions and 8 deletions

View File

@@ -308,7 +308,7 @@ namespace SabreTools.DatTools
// Get the TGZ and TXZ status for later
GZipArchive tgz = new(file);
XZArchive txz = new(file);
bool isSingleTorrent = tgz.IsTorrent() || txz.IsTorrent();
bool isSingleTorrent = tgz.IsStandardized() || txz.IsStandardized();
// Get the base archive first
BaseArchive? archive = FileTypeTool.CreateArchiveType(file);