diff --git a/plugins/kolab_files/kolab_files.js b/plugins/kolab_files/kolab_files.js index 7eb3600e..51755737 100644 --- a/plugins/kolab_files/kolab_files.js +++ b/plugins/kolab_files/kolab_files.js @@ -25,7 +25,7 @@ * for the JavaScript code in this file. */ -window.rcmail && rcmail.addEventListener('init', function() { +window.rcmail && window.files_api && rcmail.addEventListener('init', function() { if (rcmail.task == 'mail') { // mail compose if (rcmail.env.action == 'compose') { @@ -994,7 +994,7 @@ rcube_webmail.prototype.files_print = function() rcube_webmail.prototype.files_set_quota = function(p) { - if (p.total) { + if (p.total && window.file_api) { p.used *= 1024; p.total *= 1024; p.title = file_api.file_size(p.used) + ' / ' + file_api.file_size(p.total)