Compare commits

..

No commits in common. "6883434d0de94df7bb94b0f333d96277f4447bb0" and "eda2193e64c9ff23c0c44f8cbd6b914620e40895" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class LiveTagService(
val request = objectMapper.readValue(requestString, CreateLiveTagRequest::class.java)
tagExistCheck(request)
val tag = repository.save(LiveTag(request.tag, isAdult = request.isAdult))
val tag = repository.save(LiveTag(request.tag))
val metadata = ObjectMetadata()
metadata.contentLength = image.size
@ -61,7 +61,6 @@ class LiveTagService(
val request = objectMapper.readValue(requestString, CreateLiveTagRequest::class.java)
tag.tag = request.tag
tag.isAdult = request.isAdult
if (image != null) {
val metadata = ObjectMetadata()