From 9ef05d5b8e0c171ec1e93eb8f9859678f45c4bc2 Mon Sep 17 00:00:00 2001 From: Yuje Lee Date: Sun, 11 Feb 2024 10:54:33 +0900 Subject: [PATCH] =?UTF-8?q?:ambulance:=20!hotfix:=20=EC=A1=B0=EC=A7=81=20?= =?UTF-8?q?=EB=A7=81=ED=81=AC=20url=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8?= =?UTF-8?q?=20=EC=95=88=EB=90=98=EB=8D=98=20=EB=B2=84=EA=B7=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/organizationLink/entity/OrganizationLink.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/com/sponus/sponusbe/domain/organizationLink/entity/OrganizationLink.java b/src/main/java/com/sponus/sponusbe/domain/organizationLink/entity/OrganizationLink.java index 0e98f744..534b4566 100644 --- a/src/main/java/com/sponus/sponusbe/domain/organizationLink/entity/OrganizationLink.java +++ b/src/main/java/com/sponus/sponusbe/domain/organizationLink/entity/OrganizationLink.java @@ -1,7 +1,6 @@ package com.sponus.sponusbe.domain.organizationLink.entity; import com.sponus.sponusbe.domain.organization.entity.Organization; - import com.sponus.sponusbe.domain.organizationLink.dto.request.OrganizationLinkUpdateRequest; import jakarta.persistence.Column; @@ -46,6 +45,6 @@ public class OrganizationLink { public void update(OrganizationLinkUpdateRequest request) { this.name = request.name() == null ? this.name : request.name(); - this.url = request.name() == null ? this.url : request.url(); + this.url = request.url() == null ? this.url : request.url(); } }