1
0
mirror of synced 2024-11-12 02:00:50 +01:00

Add .zst extension.

This commit is contained in:
KillzXGaming 2021-12-08 20:46:42 -05:00
parent d11e90787c
commit 6e64dbc131

View File

@ -11,7 +11,7 @@ namespace Toolbox.Library
public class Zstb : ICompressionFormat
{
public string[] Description { get; set; } = new string[] { "ZSTD" };
public string[] Extension { get; set; } = new string[] { "*.zstd", };
public string[] Extension { get; set; } = new string[] { "*.zstd", "*.zst", };
public override string ToString() { return "ZSTD"; }