From bfc503b5446281bf89a8189c7e4f10cb4bb629d8 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 20 Sep 2022 22:32:42 +0200 Subject: [PATCH] [MIRROR] Allow gzip encoded archives to be downloaded from the browse files ui [MDB IGNORE] (#16339) * Allow gzip encoded archives to be downloaded from the browse files ui (#70013) * Allow gzip encoded archives to be downloaded from the browse files ui Co-authored-by: oranges --- code/__HELPERS/files.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__HELPERS/files.dm b/code/__HELPERS/files.dm index e2e5e2b69d4..12ae584db5f 100644 --- a/code/__HELPERS/files.dm +++ b/code/__HELPERS/files.dm @@ -5,7 +5,7 @@ */ GLOBAL_VAR_INIT(fileaccess_timer, 0) -/client/proc/browse_files(root_type=BROWSE_ROOT_ALL_LOGS, max_iterations=10, list/valid_extensions=list("txt","log","htm", "html")) +/client/proc/browse_files(root_type=BROWSE_ROOT_ALL_LOGS, max_iterations=10, list/valid_extensions=list("txt","log","htm", "html", "gz")) // wow why was this ever a parameter var/root = "data/logs/" switch(root_type)