<<<
--- /django__django/django/db/models/fields/reverse_related.py
+++ /django__django/django/db/models/fields/reverse_related.py
@@ -320,7 +320,10 @@
     @property
     def identity(self):
         return super().identity + (
             self.through,
-            self.through_fields,
+            (
+                self.through_fields
+                if not isinstance(self.through_fields, list)
+                else make_hashable(self.through_fields)
+            ),
             self.db_constraint,
         )
>>>