diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-05-31 09:05:52 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-05-31 09:05:52 -0700 |
| commit | 4f0150f79e0b4f4a7e55279bbbf3db85d26269a4 (patch) | |
| tree | a97813588dd9e33253448e41db6b1836d75f5f16 /hotline | |
| parent | 2161a64281bcf0a33649ec6b33d78453747d94ca (diff) | |
Temporarily disable problematic file type codes
Diffstat (limited to 'hotline')
| -rw-r--r-- | hotline/file_types.go | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/hotline/file_types.go b/hotline/file_types.go index 90ff57f..269c1a3 100644 --- a/hotline/file_types.go +++ b/hotline/file_types.go @@ -19,10 +19,10 @@ var fileTypes = map[string]fileType{ TypeCode: "PDF ", CreatorCode: "CARO", }, - "gif": { - TypeCode: "GIFf", - CreatorCode: "ogle", - }, + // "gif": { + // TypeCode: "GIFf", + // CreatorCode: "ogle", + // }, "txt": { TypeCode: "TEXT", CreatorCode: "ttxt", @@ -35,24 +35,24 @@ var fileTypes = map[string]fileType{ TypeCode: "Gzip ", CreatorCode: "SITx", }, - "hqx": { - TypeCode: "TEXT ", - CreatorCode: "SITx", - }, - "jpg": { - TypeCode: "JPEG ", - CreatorCode: "ogle", - }, - "img": { - TypeCode: "rohd ", - CreatorCode: "ddsk", - }, - "sea": { - TypeCode: "APPL ", - CreatorCode: "aust", - }, - "mov": { - TypeCode: "MooV ", - CreatorCode: "TVOD", - }, + // "hqx": { + // TypeCode: "TEXT ", + // CreatorCode: "SITx", + // }, + // "jpg": { + // TypeCode: "JPEG ", + // CreatorCode: "ogle", + // }, + // "img": { + // TypeCode: "rohd ", + // CreatorCode: "ddsk", + // }, + // "sea": { + // TypeCode: "APPL ", + // CreatorCode: "aust", + // }, + // "mov": { + // TypeCode: "MooV ", + // CreatorCode: "TVOD", + // }, } |