Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit f7b5a37

Browse files
committed
Fixed bug in websites#process_albums
1 parent 5a4c99c commit f7b5a37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: app/controllers/admin/websites_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def process_remote_albums
4848
album = Album.new(:title => remote_album.title, :description => remote_album.description, :remote_id => remote_album.id)
4949
resource.albums << album
5050
album.save
51-
Navvy::Job.enqueue(SourceWorker, :import_album, {:id => album.source.id})
51+
Navvy::Job.enqueue(SourceWorker, :import_album, {:id => album.id})
5252
end
5353
end
5454
end

0 commit comments

Comments
 (0)