We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c31116b commit d486b90Copy full SHA for d486b90
src/app/models.py
@@ -1286,13 +1286,13 @@ def increase_progress(self):
1286
"""Increase the progress of the media by 30 minutes."""
1287
self.progress += 30
1288
self.save()
1289
- logger.info("Watched %s E%s", self, self.progress)
+ logger.info("Changed playtime of %s to %s", self, self.formatted_progress)
1290
1291
def decrease_progress(self):
1292
"""Decrease the progress of the media by 30 minutes."""
1293
self.progress -= 30
1294
1295
- logger.info("Unwatched %s E%s", self, self.progress + 1)
1296
1297
1298
class Book(Media):
0 commit comments