Skip to content

Commit 9102575

Browse files
ClearlyClaireGargron
authored andcommitted
Fix lists export (mastodon#10136)
1 parent 6c01d6d commit 9102575

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/models/export.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def to_following_accounts_csv
2323

2424
def to_lists_csv
2525
CSV.generate do |csv|
26-
account.owned_lists.select(:title).each do |list|
26+
account.owned_lists.select(:title, :id).each do |list|
2727
list.accounts.select(:username, :domain).each do |account|
2828
csv << [list.title, acct(account)]
2929
end

0 commit comments

Comments
 (0)