Skip to content

Commit

Permalink
Fix issue with extra `` in code
Browse files Browse the repository at this point in the history
  • Loading branch information
lgebhardt committed Apr 18, 2024
1 parent 05c10bd commit 9b9961d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jsonapi/active_relation_retrieval_v10.rb
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def find_related_monomorphic_fragments(source_fragments, relationship, options,

if connect_source_identity
inverse_relationship = relationship._inverse_relationship
fragments[rid].add_related_identity(inverse_relationship.name, source_rid) if inverse_relationship``.present?
fragments[rid].add_related_identity(inverse_relationship.name, source_rid) if inverse_relationship.present?
end
end

Expand Down

0 comments on commit 9b9961d

Please sign in to comment.