Change default transcodings to a proper typed struct

This commit is contained in:
Deluan 2024-05-08 17:39:25 -04:00
parent 62cc8a2d4b
commit eb93136b3f
2 changed files with 19 additions and 14 deletions

View file

@ -30,7 +30,7 @@ func upAddDefaultTranscodings(_ context.Context, tx *sql.Tx) error {
}
for _, t := range consts.DefaultTranscodings {
_, err := stmt.Exec(uuid.NewString(), t["name"], t["targetFormat"], t["defaultBitRate"], t["command"])
_, err := stmt.Exec(uuid.NewString(), t.Name, t.TargetFormat, t.DefaultBitRate, t.Command)
if err != nil {
return err
}