Fix undecided lists in fodlerstatusmodel comment
authorClaudio Cambra <claudio.cambra@nextcloud.com>
Mon, 26 Feb 2024 09:09:38 +0000 (17:09 +0800)
committerClaudio Cambra <claudio.cambra@nextcloud.com>
Tue, 5 Mar 2024 03:48:05 +0000 (11:48 +0800)
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
src/gui/folderstatusmodel.cpp

index a3b3b49f2bcadc5dbd43b03e7e82b98aa190b5db..702ae998f5b344773788691cc86c2cc276a5c841 100644 (file)
@@ -823,7 +823,7 @@ void FolderStatusModel::slotUpdateDirectories(const QStringList &list)
     for (const auto undecidedIndex : qAsConst(undecidedIndexes)) {
         emit suggestExpand(index(undecidedIndex, 0, idx));
     }
-    /* Try to remove the the undecided lists the items that are not on the server. */
+    /* Try to remove from the undecided lists the items that are not on the server. */
     auto it = std::remove_if(selectiveSyncUndecidedList.begin(), selectiveSyncUndecidedList.end(),
         [&](const QString &s) { return selectiveSyncUndecidedSet.count(s); });
     if (it != selectiveSyncUndecidedList.end()) {