소스 검색

[scrobbling] Fix missing location in create

Colin Powell 1 년 전
부모
커밋
49dd148f9f
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      vrobbler/apps/scrobbles/models.py

+ 3 - 0
vrobbler/apps/scrobbles/models.py

@@ -890,6 +890,9 @@ class Scrobble(TimeStampedModel):
         that is far enough (and far enough over the last three past scrobbles) to have
         actually moved.
         """
+        key = media_class_to_foreign_key(location.__class__.__name__)
+        scrobble_data[key + "_id"] = location.id
+
         scrobble = (
             cls.objects.filter(
                 media_type=cls.MediaType.GEO_LOCATION,