소스 검색

remove image if nil and previous exists

Kylie Jo Swistak 5 년 전
부모
커밋
1a4912fdd0
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      app/controllers/image_controller.rb

+ 5 - 0
app/controllers/image_controller.rb

@@ -2,6 +2,11 @@ class ImageController
   def self.default_image(url, char_id, rating)
     image = CharImage.where(char_id: char_id).find_by(keyword: 'Default')
 
+    if url == nil
+      image.destroy if image
+      return
+    end
+
     if image
       image.update(url: url)
     else