From 4f0150f79e0b4f4a7e55279bbbf3db85d26269a4 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Tue, 31 May 2022 09:05:52 -0700 Subject: Temporarily disable problematic file type codes --- hotline/file_types.go | 48 ++++++++++++++++++++++++------------------------ 1 file 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", + // }, } -- cgit