Browse Source

Fix dismissing an announcement twice raising an obscure error (#13124)

master
ThibG 4 years ago
committed by GitHub
parent
commit
7face973fa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/controllers/api/v1/announcements_controller.rb

+ 1
- 1
app/controllers/api/v1/announcements_controller.rb View File

@ -11,7 +11,7 @@ class Api::V1::AnnouncementsController < Api::BaseController
end
def dismiss
AnnouncementMute.create!(account: current_account, announcement: @announcement)
AnnouncementMute.find_or_create_by!(account: current_account, announcement: @announcement)
render_empty
end

Loading…
Cancel
Save