- {{ this.$secondsToTimestamp(currentTime) }}
+ {{ this.$secondsToTimestamp(currentTime / playbackRate) }}
@@ -46,7 +46,9 @@ export default {
type: Number,
default: 0
},
- libraryItemId: String
+ libraryItemId: String,
+ playbackRate: Number,
+ hideCreate: Boolean
},
data() {
return {
diff --git a/client/components/modals/bookmarks/BookmarkItem.vue b/client/components/modals/bookmarks/BookmarkItem.vue
index c4035bc8..538d3115 100644
--- a/client/components/modals/bookmarks/BookmarkItem.vue
+++ b/client/components/modals/bookmarks/BookmarkItem.vue
@@ -2,7 +2,7 @@
- {{ this.$secondsToTimestamp(bookmark.time) }}
+ {{ this.$secondsToTimestamp(bookmark.time / playbackRate) }}
@@ -35,7 +35,8 @@ export default {
type: Object,
default: () => {}
},
- highlight: Boolean
+ highlight: Boolean,
+ playbackRate: Number
},
data() {
return {
diff --git a/client/pages/item/_id/index.vue b/client/pages/item/_id/index.vue
index 139794e5..a0cadc1d 100644
--- a/client/pages/item/_id/index.vue
+++ b/client/pages/item/_id/index.vue
@@ -141,7 +141,7 @@
-
+