From f83eee066327f3b30fe9927b569f38803d79c5bf Mon Sep 17 00:00:00 2001 From: gmantele <gmantele@ari.uni-heidelberg.de> Date: Thu, 2 Oct 2014 16:22:10 +0200 Subject: [PATCH] [TAP] Fix TSV (Tab-Separated-Values) MIME type. --- src/tap/formatter/SVFormat.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tap/formatter/SVFormat.java b/src/tap/formatter/SVFormat.java index 88ddb09..196410c 100644 --- a/src/tap/formatter/SVFormat.java +++ b/src/tap/formatter/SVFormat.java @@ -35,7 +35,7 @@ import adql.db.DBColumn; * Format any given query (table) result into CSV or TSV (or with custom separator). * * @author Grégory Mantelet (CDS;ARI) - * @version 2.0 (09/2014) + * @version 2.0 (10/2014) */ public class SVFormat implements OutputFormat { @@ -124,7 +124,7 @@ public class SVFormat implements OutputFormat { case SEMI_COLON_SEPARATOR: return "text/csv"; case TAB_SEPARATOR: - return "text/tsv"; + return "text/tab-separated-values"; default: return "text/plain"; } -- GitLab