diff options
Diffstat (limited to 'client/src/assets')
-rw-r--r-- | client/src/assets/player/shared/metrics/metrics-plugin.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/assets/player/shared/metrics/metrics-plugin.ts b/client/src/assets/player/shared/metrics/metrics-plugin.ts index 1b2349eba..2844828da 100644 --- a/client/src/assets/player/shared/metrics/metrics-plugin.ts +++ b/client/src/assets/player/shared/metrics/metrics-plugin.ts | |||
@@ -64,7 +64,9 @@ class MetricsPlugin extends Plugin { | |||
64 | if (!videoFile) return | 64 | if (!videoFile) return |
65 | 65 | ||
66 | resolution = videoFile.resolution.id | 66 | resolution = videoFile.resolution.id |
67 | fps = videoFile.fps | 67 | fps = videoFile.fps && videoFile.fps !== -1 |
68 | ? videoFile.fps | ||
69 | : undefined | ||
68 | } | 70 | } |
69 | 71 | ||
70 | const body: PlaybackMetricCreate = { | 72 | const body: PlaybackMetricCreate = { |