Skip to content

Commit

Permalink
Merge pull request #946 from BCSDLab/fix/article-registered-at
Browse files Browse the repository at this point in the history
fix: article 로직 수정
  • Loading branch information
DHkimgit authored Oct 5, 2024
2 parents 8b1f5d9 + b7c9496 commit e0819a1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ public String getAuthor() {
public LocalDate getRegisteredAt() {
if (this.koreatechArticle != null) {
return this.koreatechArticle.getRegisteredAt();
} else
return null;
}
return this.getCreatedAt().toLocalDate();
}

public int getArticleNum() {
Expand Down

0 comments on commit e0819a1

Please sign in to comment.