From 3680eef45fbf31f4f6993053decfba200704fb3d Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 14 Aug 2024 16:20:07 +0330 Subject: [PATCH] fix: Fix subscribe groups not showing profiles --- ui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/mainwindow.cpp b/ui/mainwindow.cpp index bc1c9da..6481899 100644 --- a/ui/mainwindow.cpp +++ b/ui/mainwindow.cpp @@ -926,7 +926,7 @@ void MainWindow::refresh_proxy_list_impl(const int &id, GroupSortAction groupSor ui->proxyListTable->setRowCount(0); // 添加行 int row = -1; - for (const auto ent: NekoGui::profileManager->GetGroup(NekoGui::dataStore->current_group)->ProfilesWithOrder()) { + for (const auto ent: NekoGui::profileManager->GetGroup(NekoGui::dataStore->current_group)->Profiles()) { row++; ui->proxyListTable->insertRow(row); ui->proxyListTable->row2Id += ent->id;