Skip to content
Snippets Groups Projects
Commit 1443d6c3 authored by Robin Appelman's avatar Robin Appelman
Browse files

fix mimetype icons for new files

parent 77c16b29
No related branches found
No related tags found
No related merge requests found
......@@ -853,7 +853,7 @@ function getMimeIcon(mime, ready){
if(getMimeIcon.cache[mime]){
ready(getMimeIcon.cache[mime]);
}else{
$.get( OC.filePath('files','ajax','mimeicon.php')+'&mime='+mime, function(path){
$.get( OC.filePath('files','ajax','mimeicon.php'), {mime: mime}, function(path){
getMimeIcon.cache[mime]=path;
ready(getMimeIcon.cache[mime]);
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment