From 187e77f9ff9bc4db60c20e6e812b3aa02cde6fed Mon Sep 17 00:00:00 2001 From: Michael Starke Date: Thu, 23 Aug 2018 18:58:55 +0200 Subject: [PATCH] Fixed wrong combineable flags --- MacPass/MPEntrySearchContext.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/MacPass/MPEntrySearchContext.h b/MacPass/MPEntrySearchContext.h index 42d1dfdd..f6a28d13 100644 --- a/MacPass/MPEntrySearchContext.h +++ b/MacPass/MPEntrySearchContext.h @@ -34,9 +34,7 @@ typedef NS_OPTIONS(NSUInteger, MPEntrySearchFlags) { MPEntrySearchExpiredEntries = (1<<7), // do not combine with others. Exclusive flag /* All combine-able search flags combined */ - MPEntrySearchAllCombineableFlags = (MPEntrySearchDoublePasswords | - MPEntrySearchExpiredEntries | - MPEntrySearchNotes | + MPEntrySearchAllCombineableFlags = (MPEntrySearchNotes | MPEntrySearchPasswords | MPEntrySearchTitles | MPEntrySearchUrls |