Skip to content

Commit

Permalink
fix playlist cover
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaarey committed Apr 27, 2024
1 parent 0236f80 commit d6c7b40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ func writeCover(sanAlbumFolder, url string) error {
if exists {
return nil
}
url = strings.Replace(url, "{w}x{h}", "10000x10000", 1)
url = strings.Replace(url, "{w}x{h}", "5000x5000", 1)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return err
Expand Down
2 changes: 1 addition & 1 deletion main_atmos.go
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ func writeCover(sanAlbumFolder, url string) error {
if exists {
return nil
}
url = strings.Replace(url, "{w}x{h}", "10000x10000", 1)
url = strings.Replace(url, "{w}x{h}", "5000x5000", 1)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return err
Expand Down
2 changes: 1 addition & 1 deletion main_select.go
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ func writeCover(sanAlbumFolder, url string) error {
if exists {
return nil
}
url = strings.Replace(url, "{w}x{h}", "10000x10000", 1)
url = strings.Replace(url, "{w}x{h}", "5000x5000", 1)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return err
Expand Down

0 comments on commit d6c7b40

Please sign in to comment.