Fix segment parameter again

This commit is contained in:
2024-07-16 20:22:16 -06:00
parent bce363e8ff
commit cdd1cdd526
2 changed files with 6 additions and 6 deletions

View File

@@ -26,12 +26,12 @@ mutation GetHlsInitUploadLink($videoId: Int!) {
mutation SetSegmentDuration(
$videoId: Int!
$segmentId: Int!
$segmentIndex: Int!
$duration: Float!
) {
setSegmentDuration(
videoId: $videoId
segmentId: $segmentId
segmentIndex: $segmentIndex
duration: $duration
)
}