Skip to content

Commit

Permalink
Fix #2892. Mime type only mapped for lower case extension.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Jan 13, 2009
1 parent 00e64f9 commit 5bad61f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ch/cyberduck/core/AbstractPath.java
Expand Up @@ -225,7 +225,7 @@ public String getExtension() {
}

public String getMimeType() {
return Mimetypes.getInstance().getMimetype(this.getName());
return Mimetypes.getInstance().getMimetype(this.getName().toLowerCase());
}

/**
Expand Down

0 comments on commit 5bad61f

Please sign in to comment.