From 13d2177bcca50422955a24708b3cfb941189d5a8 Mon Sep 17 00:00:00 2001 From: dmori Date: Thu, 1 Jan 2026 13:02:32 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20=EB=88=84=EB=9D=BD=EB=90=9C=20?= =?UTF-8?q?=EB=84=A4=EC=9D=B4=EB=B2=84=20D2=EC=99=80=20SK=20C&C=20?= =?UTF-8?q?=EB=A1=9C=EA=B3=A0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/techfork/global/config/InitialDataConfig.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/techfork/global/config/InitialDataConfig.java b/src/main/java/com/techfork/global/config/InitialDataConfig.java index 1ac1de0..9736759 100644 --- a/src/main/java/com/techfork/global/config/InitialDataConfig.java +++ b/src/main/java/com/techfork/global/config/InitialDataConfig.java @@ -35,7 +35,7 @@ public CommandLineRunner initTechBlogs(){ TechBlog.create("여기어때", "https://techblog.gccompany.co.kr", "https://techblog.gccompany.co.kr/rss", "https://miro.medium.com/v2/resize:fill:128:128/1*rGdUGkMoxT5SfrVKVAqbEw.png"), TechBlog.create("인프랩", "https://tech.inflab.com", "https://tech.inflab.com/rss.xml", null), - TechBlog.create("네이버D2", "https://d2.naver.com/home", "https://d2.naver.com/d2.atom", " "), + TechBlog.create("네이버D2", "https://d2.naver.com/home", "https://d2.naver.com/d2.atom", "https://d2.naver.com/favicon.ico"), TechBlog.create("요기요", "https://techblog.yogiyo.co.kr", "https://techblog.yogiyo.co.kr/feed", "https://miro.medium.com/v2/resize:fill:128:128/1*yMAs19hb_LGVSSVcalnkHw.jpeg"), TechBlog.create("올리브영", "https://oliveyoung.tech", "https://oliveyoung.tech/rss.xml", null), TechBlog.create("쏘카", "https://tech.socarcorp.kr/", "https://tech.socarcorp.kr/feed", null), @@ -46,7 +46,7 @@ public CommandLineRunner initTechBlogs(){ TechBlog.create("토스", "https://toss.tech", "https://toss.tech/rss.xml", null), TechBlog.create("리디", "https://www.ridicorp.com/story-category/tech-blog/", "https://www.ridicorp.com/story-category/tech-blog/feed/", null), - TechBlog.create("SK C&C", "https://engineering-skcc.github.io", "https://engineering-skcc.github.io/feed.xml", " "), + TechBlog.create("SK C&C", "https://engineering-skcc.github.io", "https://engineering-skcc.github.io/feed.xml", "https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://skax.co.kr&size=40"), TechBlog.create("카카오엔터프라이즈", "https://tech.kakaoenterprise.com", "https://tech.kakaoenterprise.com/feed", null), TechBlog.create("NHN", "https://meetup.nhncloud.com", "https://meetup.nhncloud.com/rss", null), TechBlog.create("원티드", "https://medium.com/wantedjobs", "https://medium.com/feed/wantedjobs", "https://miro.medium.com/v2/resize:fill:128:128/1*FJkqW-xbLo_-zwoSzR1C6Q.jpeg"), From a3fc15f2b5f6b685b76404712e13a0981566bf67 Mon Sep 17 00:00:00 2001 From: dmori Date: Thu, 1 Jan 2026 13:02:59 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=ED=8C=8C=EB=9D=BC=EB=AF=B8=ED=84=B0?= =?UTF-8?q?=EA=B0=80=20=EC=95=84=EB=8B=8C=20this.logoUrl=EC=9D=84=20?= =?UTF-8?q?=EB=B0=9B=EC=95=84=EC=84=9C=20=EB=AA=A8=EB=91=90=20null?= =?UTF-8?q?=EB=A1=9C=20=EC=B7=A8=EA=B8=89=EB=90=98=EB=8A=94=20=EB=AC=B8?= =?UTF-8?q?=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/techfork/domain/source/entity/TechBlog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/techfork/domain/source/entity/TechBlog.java b/src/main/java/com/techfork/domain/source/entity/TechBlog.java index 306c3fc..9c42c10 100644 --- a/src/main/java/com/techfork/domain/source/entity/TechBlog.java +++ b/src/main/java/com/techfork/domain/source/entity/TechBlog.java @@ -37,7 +37,7 @@ private TechBlog(String companyName, String blogUrl, String rssUrl, String logoU this.blogUrl = blogUrl; this.rssUrl = rssUrl; - if (this.logoUrl != null) { + if (logoUrl != null) { this.logoUrl = logoUrl; } else { this.logoUrl = String.format("https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=%s/&size=40", this.blogUrl);