Skip to content

Commit

Permalink
Fixed missing entity for thumbnail_arrived singal_payload
Browse files Browse the repository at this point in the history
  • Loading branch information
j0yu committed Jun 2, 2020
1 parent 645142e commit 37ced80
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions python/activity_stream/data_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,7 @@ def request_activity_thumbnails(self, activity_id):
)
self._thumb_map[uid] = {
"activity_id": activity_id,
"entity": entity,
"thumbnail_type": self.THUMBNAIL_CREATED_BY,
}

Expand All @@ -484,6 +485,7 @@ def request_activity_thumbnails(self, activity_id):
)
self._thumb_map[uid] = {
"activity_id": activity_id,
"entity": entity,
"thumbnail_type": self.THUMBNAIL_CREATED_BY,
}

Expand All @@ -497,6 +499,7 @@ def request_activity_thumbnails(self, activity_id):
)
self._thumb_map[uid] = {
"activity_id": activity_id,
"entity": entity,
"thumbnail_type": self.THUMBNAIL_CREATED_BY,
}

Expand All @@ -515,6 +518,7 @@ def request_activity_thumbnails(self, activity_id):
)
self._thumb_map[uid] = {
"activity_id": activity_id,
"entity": entity,
"thumbnail_type": self.THUMBNAIL_CREATED_BY,
}

Expand All @@ -526,6 +530,7 @@ def request_activity_thumbnails(self, activity_id):
)
self._thumb_map[uid] = {
"activity_id": activity_id,
"entity": entity,
"thumbnail_type": self.THUMBNAIL_ENTITY,
}

Expand Down

0 comments on commit 37ced80

Please sign in to comment.