Add settings for auto-skip

This commit is contained in:
Zoe Roux
2026-04-17 23:44:21 +02:00
parent 90f2d5b190
commit bf2c5efafd
11 changed files with 165 additions and 16 deletions
+1 -1
View File
@@ -158,7 +158,7 @@ type Chapter struct {
/// The type value is used to mark special chapters (opening/credits...)
Type ChapterType `json:"type" db:"type"`
// true only for introductions where the audio track is new (first time we'we heard this one in the serie)
FirstAppearance *bool `json:"firstAppearance" db:"first_appearance"`
FirstAppearance *bool `json:"firstAppearance,omitempty" db:"first_appearance"`
/// Accuracy of the fingerprint match (0-100).
MatchAccuracy *int32 `json:"matchAccuracy,omitempty" db:"match_accuracy"`
}