diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-07 18:17:15 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-07 18:21:57 +0200 |
commit | 499beb4484031703f029511787163e3a5bb6e47a (patch) | |
tree | 415f8990a756fb4c42c0dac3dc434ed68c69ed99 /app/services | |
parent | 1efa8e48d1cbf26715a764a9f4acf1b848a9f740 (diff) |
UI for uploading media attachments (and cancelling them)
Mostly resolves #8, though attachments are still not displayed in public view
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/post_status_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb index ee2136e3f..930e7ec9e 100644 --- a/app/services/post_status_service.rb +++ b/app/services/post_status_service.rb @@ -19,7 +19,7 @@ class PostStatusService < BaseService def attach_media(status, media_ids) return if media_ids.nil? || !media_ids.is_a?(Enumerable) - media = MediaAttachment.where(status_id: nil).where(id: media_ids.take(2).map { |id| id.to_i }) + media = MediaAttachment.where(status_id: nil).where(id: media_ids.take(4).map { |id| id.to_i }) media.update(status_id: status.id) end |