Skip to content
Snippets Groups Projects
Commit ff845cf3 authored by Christoph Wurst's avatar Christoph Wurst
Browse files

account !== folder

parent 5f3a11a2
No related branches found
No related tags found
No related merge requests found
...@@ -6,8 +6,10 @@ All notable changes to this project will be documented in this file. ...@@ -6,8 +6,10 @@ All notable changes to this project will be documented in this file.
### Fixed ### Fixed
- Close popover on clicking somewhere else - Close popover on clicking somewhere else
[#1521](https://github.com/owncloud/mail/pull/1521) @tahaalibra [#1521](https://github.com/owncloud/mail/pull/1521) @tahaalibra
- fix email length in the database - Fix email length in the database
[#1518](https://github.com/owncloud/mail/pull/1518) @tahaalibra [#1518](https://github.com/owncloud/mail/pull/1518) @tahaalibra
- Fix setup error 'folder is null'
[#1532](https://github.com/owncloud/mail/pull/1532) @Gomez
## 0.5.1 – 2016-05-30 ## 0.5.1 – 2016-05-30
......
...@@ -154,7 +154,7 @@ define(function(require) { ...@@ -154,7 +154,7 @@ define(function(require) {
// Let's assume there's at least one account after a successful // Let's assume there's at least one account after a successful
// setup, so let's show the first one (could be the unified inbox) // setup, so let's show the first one (could be the unified inbox)
var firstAccount = accounts.first(); var firstAccount = accounts.first();
var firstFolder = accounts.first(); var firstFolder = firstAccount.get('folders').first();
Radio.navigation.trigger('folder', firstAccount.get('accountId'), firstFolder.get('id')); Radio.navigation.trigger('folder', firstAccount.get('accountId'), firstFolder.get('id'));
}); });
}); });
......
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