mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-20 19:05:25 +00:00
(js) Fix access to sub mailbox on page reload
This commit is contained in:
@@ -23,6 +23,7 @@ Bug fixes
|
||||
- [web] fixed useless scrolling when deleting a message
|
||||
- [web] don't hide compose button if messages list is visible
|
||||
- [web] fixed next/previous slots with external attendees
|
||||
- [web] fixed restoration of sub mailbox when reloading page
|
||||
- [core] allow super users to modify any event (#4216)
|
||||
- [core] correctly handle the full cert chain in S/MIME
|
||||
- [core] handle multidays events in freebusy data
|
||||
|
||||
@@ -190,7 +190,7 @@
|
||||
stateMailbox.$inject = ['$q', '$stateParams', 'stateAccount', 'decodeUriFilter', 'Mailbox'];
|
||||
function stateMailbox($q, $stateParams, stateAccount, decodeUriFilter, Mailbox) {
|
||||
var mailbox,
|
||||
mailboxId = decodeUriFilter($stateParams.mailboxId),
|
||||
mailboxId = decodeUriFilter(decodeUriFilter($stateParams.mailboxId)),
|
||||
_find;
|
||||
|
||||
// Recursive find function
|
||||
|
||||
@@ -91,7 +91,7 @@
|
||||
if ($event) {
|
||||
$state.go('mail.account.mailbox', {
|
||||
accountId: this.mailbox.$account.id,
|
||||
mailboxId: encodeUriFilter(this.mailbox.path)
|
||||
mailboxId: encodeUriFilter(encodeUriFilter(this.mailbox.path))
|
||||
});
|
||||
$event.stopPropagation();
|
||||
$event.preventDefault();
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"angular-material": "1.1.19",
|
||||
"angular-messages": "1.7.x",
|
||||
"angular-sanitize": "1.7.x",
|
||||
"angular-ui-router": "1.0.20",
|
||||
"angular-ui-router": "1.0.x",
|
||||
"file-saver": "latest",
|
||||
"lodash": "latest",
|
||||
"ng-sortable": "1.3.7"
|
||||
|
||||
Reference in New Issue
Block a user