Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ springBoot {
}

group = 'com.linglevel'
version = '3.1.1-SNAPSHOT'
version = '3.1.2-SNAPSHOT'

java {
toolchain {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,12 @@ private Feed convertEntryToFeed(SyndEntry entry, FeedSource feedSource) {
// 발행일 추출
Instant publishedAt = extractPublishedDate(entry);

// 필수 필드 검증: thumbnailUrl이 null이면 null 반환 (소프트 딜리트 처리됨)
if (thumbnailUrl == null) {
log.warn("RSS entry missing thumbnailUrl: {}", url);
return null;
}

// 작성자 추출
String author = entry.getAuthor();

Expand Down