Skip to content

Commit

Permalink
Add initial Hero13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
KonradIT committed Sep 4, 2024
1 parent 1734c81 commit ea57ef1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/gopro/connect.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func ImportConnect(params utils.ImportParams) (*utils.Result, error) {
root := strings.Split(gpInfo.Info.FirmwareVersion, ".")[0]

switch root {
case "HD9", "H21", "H22", "H23":
case "HD9", "H21", "H22", "H23", "H24":
verType = V2
gpTurbo = true
case "HD6", "HD7", "HD8":
Expand Down
2 changes: 1 addition & 1 deletion pkg/gopro/gopro.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func (Entrypoint) Import(params utils.ImportParams) (*utils.Result, error) {
params.Input = filepath.Join(params.Input, fmt.Sprint(DCIM))

switch root {
case "HD6", "HD7", "HD8", "H19", "HD9", "H21", "H22", "H23":
case "HD6", "HD7", "HD8", "H19", "HD9", "H21", "H22", "H23", "H24":
result := importFromGoProV2(params)
return &result, nil
case "HD2", "HD3", "HD4", "HX", "HD5":
Expand Down

0 comments on commit ea57ef1

Please sign in to comment.