Skip to content

Commit 161eda8

Browse files
mpracharclaude
andcommitted
fix: remove extra blank line, wrap long function signature for lll lint
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 9c1dc5e commit 161eda8

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

pkg/unpackerr/lidarr.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ func (u *Unpackerr) lidarrServerByURL(url string) *LidarrConfig {
155155
return nil
156156
}
157157

158-
159158
// crossPlatformBase returns the filename from a path that may use either forward slashes
160159
// or backslashes as separators. On Linux, filepath.Base does not split on backslashes,
161160
// so Windows/UNC paths from Starr apps would return the entire path instead of the filename.
@@ -211,7 +210,9 @@ func filterManualImportToNumberedTracks(outputs []*lidarr.ManualImportOutput) []
211210
// filterSplitOutputs filters ManualImport outputs to only include split track files.
212211
// First tries matching against NewFiles (basename comparison), then falls back to the
213212
// CUE-split naming pattern (NN - Title.flac) when NewFiles is unavailable.
214-
func (u *Unpackerr) filterSplitOutputs(outputs []*lidarr.ManualImportOutput, item *Extract) []*lidarr.ManualImportOutput {
213+
func (u *Unpackerr) filterSplitOutputs(
214+
outputs []*lidarr.ManualImportOutput, item *Extract,
215+
) []*lidarr.ManualImportOutput {
215216
allOutputs := make([]*lidarr.ManualImportOutput, len(outputs))
216217
copy(allOutputs, outputs)
217218

0 commit comments

Comments
 (0)