Skip to content

Commit

Permalink
Fix set virtual repo id error
Browse files Browse the repository at this point in the history
  • Loading branch information
杨赫然 committed Mar 26, 2024
1 parent 549c6b8 commit b5d576b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/gc/gc-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ populate_gc_index_for_repo (SeafRepo *repo, Bloom *blocks_index, Bloom *fs_index
repo->id);
for (ptr = vrepo_ids; ptr; ptr = ptr->next) {
repo_id = ptr->data;
vinfo = seaf_repo_manager_get_virtual_repo_info (seaf->repo_mgr, repo->id);
vinfo = seaf_repo_manager_get_virtual_repo_info (seaf->repo_mgr, repo_id);
if (!vinfo) {
continue;
}
Expand Down

0 comments on commit b5d576b

Please sign in to comment.