Krusader: Unpacking TXZ.

Signed-off-by: Roman Savochenko <roman@home.home>
pull/19/head
Roman Savochenko 5 months ago
parent d31c5f6ee9
commit b362876616

@ -752,6 +752,8 @@ TQString KRarcHandler::detectArchive( bool &encrypted, TQString fileName, bool c
encrypted = proc.isEncrypted();
}
}
else if( type == "xz" && (fileName.endsWith(".tar.xz") || fileName.endsWith(".txz")) )
type = "txz";
return type;
}
}
@ -776,15 +778,6 @@ TQString KRarcHandler::detectArchive( bool &encrypted, TQString fileName, bool c
}
}
if (fileName.endsWith(".tar.xz"))
{
return "txz";
}
else if (fileName.endsWith(".xz"))
{
return "xz";
}
return TQString();
}

Loading…
Cancel
Save