Skip to content

Commit

Permalink
Use standard Content-Type response header (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmfalke authored Oct 11, 2023
1 parent a344f24 commit 1b9dc96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ protected ContentDisposition getContentDisposition(JSONObject config) {

@Override
public String getHttpContentType() {
return "text/x-bed";
return "text/plain";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class SequenceReporter extends AbstractReporter {

private static Logger LOG = Logger.getLogger(SequenceReporter.class);

private static final String FASTA_MEDIA_TYPE = "text/x-fasta";
private static final String FASTA_MEDIA_TYPE = "text/plain";
private static final String BED_REPORTER_NAME = "bed";

private enum SequenceType {
Expand Down

0 comments on commit 1b9dc96

Please sign in to comment.