Skip to content

Commit

Permalink
Ticket CV2-5067: Minor change to data export
Browse files Browse the repository at this point in the history
  • Loading branch information
caiosba committed Sep 2, 2024
1 parent 326cccd commit b597088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/list_export.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class ListExport
def initialize(type, query, team_id)
@type = type
@query = query
@parsed_query = JSON.parse(@query)
@parsed_query = JSON.parse(@query).with_indifferent_access
@team_id = team_id
@team = Team.find(team_id)
@feed = Feed.where(id: @parsed_query['feed_id'], team_id: @team_id).last if type == :feed
Expand Down

0 comments on commit b597088

Please sign in to comment.