Skip to content

Commit

Permalink
Fix error related to crawling
Browse files Browse the repository at this point in the history
  • Loading branch information
nnnlog committed Jun 28, 2024
1 parent 494531e commit 0771519
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/types/subject/subject.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Subject extends Comparable<Subject> {
}

// 학기별 성적 조회
if ((stateAfter & STATE_SEMESTER > 0) && (STATE_CATEGORY & STATE_CATEGORY > 0)) {
if ((stateAfter & STATE_SEMESTER > 0) && (stateBefore & STATE_CATEGORY > 0)) {
if (after.category.isEmpty) after.category = before.category;
after.isPassFail = before.isPassFail;
after.info = before.info;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: 숭실대학교 학사 정보 조회 애플리케이션

publish_to: 'none'

version: 2.6.2+50
version: 2.6.3+51

environment:
sdk: ">=2.17.3 <3.0.0"
Expand Down

0 comments on commit 0771519

Please sign in to comment.