tbr00
tbr00
In my case after upgrading to 6.1.0 I no longer get an error, but I still also do not get the expected result - the search just comes back empty,...
Having thought about this some more it is clear what the problem is here. I have class Source < ApplicationRecord has_many :sourcetags, dependent: :destroy, inverse_of: :source has_many :tags, through: :sourcetags...
I have a solution working with 6.1.0. I changed the model file to have: class Source < ApplicationRecord has_many :sourcetags, dependent: :destroy, inverse_of: :source has_many :tags, through: :sourcetags < ApplicationRecord...