Update last access time when thumbnails are viewed

This commit is contained in:
Erik Johnston 2018-01-15 11:53:04 +00:00
parent 05f98a2224
commit 300edc2348

View File

@ -67,6 +67,7 @@ class ThumbnailResource(Resource):
yield self._respond_local_thumbnail(
request, media_id, width, height, method, m_type
)
self.media_repo.mark_recently_accessed(server_name, media_id)
else:
if self.dynamic_thumbnails:
yield self._select_or_generate_remote_thumbnail(
@ -78,6 +79,7 @@ class ThumbnailResource(Resource):
request, server_name, media_id,
width, height, method, m_type
)
self.media_repo.mark_recently_accessed(None, media_id)
@defer.inlineCallbacks
def _respond_local_thumbnail(self, request, media_id, width, height,