Skip to content

Commit e13640b

Browse files
Brandon Salzbergclaude
andcommitted
Use ?t= query param for player seek (matches UrlSyncEffect)
The existing UrlSyncEffect in FullPlayer already reads ?t= from the URL and seeks to that timestamp. No custom seek logic needed in ApiPlayerPage. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ff1eaae commit e13640b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/footage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func runFootage(cmd *cobra.Command, args []string) error {
6363
// Append start time if specified
6464
if startStr != "" {
6565
startMs, _ := parseTimestamp(startStr)
66-
serverURL += fmt.Sprintf("&start=%d", startMs)
66+
serverURL += fmt.Sprintf("&t=%d", startMs)
6767
}
6868

6969
openInBrowserNewWindow(serverURL)

0 commit comments

Comments
 (0)