Skip to content

Commit

Permalink
Fix lists export (mastodon#10136)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire authored and Gargron committed Mar 3, 2019
1 parent 6c01d6d commit 9102575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/export.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def to_following_accounts_csv

def to_lists_csv
CSV.generate do |csv|
account.owned_lists.select(:title).each do |list|
account.owned_lists.select(:title, :id).each do |list|
list.accounts.select(:username, :domain).each do |account|
csv << [list.title, acct(account)]
end
Expand Down

0 comments on commit 9102575

Please sign in to comment.