Skip to content

Commit

Permalink
Fix DABBLE-ME-6S
Browse files Browse the repository at this point in the history
  • Loading branch information
parterburn committed Oct 24, 2024
1 parent 2d85503 commit f17214e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/jobs/image_collage_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ class ImageCollageJob < ActiveJob::Base

def perform(entry_id, urls: nil, message_id: nil)
entry = Entry.where(id: entry_id).first
return nil unless entry.present?

@message_id = message_id
@user = entry.user
return nil unless entry.present?

entry.update(filepicker_url: "https://dabble-me.s3.amazonaws.com/uploading.png")

Expand Down

0 comments on commit f17214e

Please sign in to comment.