fix: Fix subscribe groups not showing profiles

This commit is contained in:
unknown 2024-08-14 16:20:07 +03:30
parent 35ae46cbbf
commit 3680eef45f
No known key found for this signature in database
GPG Key ID: C2CA486E4F771093

View File

@ -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;