Skip to content

Commit

Permalink
5.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
RealRaven2000 committed Jul 11, 2021
1 parent 8c672b1 commit a8adfaf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
14 changes: 10 additions & 4 deletions chrome/content/api/ex_accounts/implementation.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,16 @@ function convertAccount(account) {
return null;
}

let folders = traverseSubfolders(
account.incomingServer.rootFolder,
account.key
).subFolders;
let folders;
try {
folders = traverseSubfolders(
account.incomingServer.rootFolder,
account.key
).subFolders;
}
catch (ex) {
console.log("traverseSubfolders failed:", account, ex);
}

return {
id: account.key,
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "Axel Grude, Klaus Buecher/opto",
"name" : "QuickFolders",
"description" : "__MSG_extensionDescription__",
"version" : "5.6.6pre28",
"version" : "5.6.6",
"default_locale": "en",
"developer" : {
"name" : "Axel Grude, Klaus Buecher/opto",
Expand Down
2 changes: 1 addition & 1 deletion revision.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
28
29

0 comments on commit a8adfaf

Please sign in to comment.