You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found a bug relating to issue #118 - when I activate the restriction to the current server I still see suggestions to create new subfolders on other servers if only parent (no child) matches are found. In this example I am trying to move a mail from "Rakuten TV" and create a new folder rakuten:
If there is an existing folder match it does not display the invalid option of creating a new folder across in Local Folders:
The text was updated successfully, but these errors were encountered:
patch content: I had to add a truthy second paremeter to the folder iterator of QuickFolders.Interface.findFolderName() :
for (let folder of util.allFoldersIterator(isFiling, isQuickJump)) {
addIfMatch(folder, matches.parentString || parentString, parents);
}
This will only work in a folder view or in a single message tab - it doesn't work in a "view message in conversation" or "search results" view because QuickFolders cannot determine a current folder in that case; this technical limitation is by design.
I found a bug relating to issue #118 - when I activate the restriction to the current server I still see suggestions to create new subfolders on other servers if only parent (no child) matches are found. In this example I am trying to move a mail from "Rakuten TV" and create a new folder rakuten:
If there is an existing folder match it does not display the invalid option of creating a new folder across in Local Folders:
The text was updated successfully, but these errors were encountered: