diff --git a/UI/WebServerResources/js/Mailer/Message.service.js b/UI/WebServerResources/js/Mailer/Message.service.js index 331788725..82e0598a5 100644 --- a/UI/WebServerResources/js/Mailer/Message.service.js +++ b/UI/WebServerResources/js/Mailer/Message.service.js @@ -96,7 +96,7 @@ * @returns a string representing the path relative to the mail module */ Message.prototype.$absolutePath = function(options) { - if (angular.isUndefined(this.id)) { + if (angular.isUndefined(this.id) || options) { var path; path = _.map(this.$mailbox.path.split('/'), function(component) { return 'folder' + component.asCSSIdentifier();