remove unused properties from file types

This commit is contained in:
Pierce 2023-09-16 11:43:37 -04:00
parent 907c615594
commit 078ecde60a
No known key found for this signature in database
GPG Key ID: EC79465B0E865E47
4 changed files with 0 additions and 7 deletions

View File

@ -1,7 +1,6 @@
local HTML = {
name = "HTML",
extension = "html",
maxFileSize = 0,
}
CFCHTTP.FileTypes.HTML = HTML

View File

@ -1,7 +1,5 @@
CFCHTTP.FileTypes.ID3 = {
name = "ID3",
allowed = true,
maxFileSize = 0,
}
local ID3 = CFCHTTP.FileTypes.ID3

View File

@ -1,8 +1,6 @@
CFCHTTP.FileTypes.M3U = {
name = "M3U",
allowed = false,
extension = "m3u",
maxFileSize = 0,
}
local M3U = CFCHTTP.FileTypes.M3U

View File

@ -1,8 +1,6 @@
CFCHTTP.FileTypes.PLS = {
name = "PLS",
allowed = false,
extension = ".pls",
maxFileSize = 10000,
}
local PLS = CFCHTTP.FileTypes.PLS