Skip to content

Commit

Permalink
Fix git import db
Browse files Browse the repository at this point in the history
  • Loading branch information
TaYaKi71751 committed Jan 15, 2024
1 parent a7b1f46 commit e7db229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/component/git/git_bookmark.dart
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class GitBookmark {
article.groupId = int.tryParse(value.toString());
}
});
if (group.gorder == article.groupId) {
if (group.id == article.groupId) {
result[group] ??= <BookmarkArticleKeyVal>[];
result[group]!.add(article);
}
Expand Down

0 comments on commit e7db229

Please sign in to comment.