mirror of
https://github.com/zhaarey/apple-music-downloader.git
synced 2025-10-23 15:11:05 +00:00
copy readme
This commit is contained in:
1
.github/workflows/go.yml
vendored
1
.github/workflows/go.yml
vendored
@@ -27,6 +27,7 @@ jobs:
|
||||
mkdir -p alac
|
||||
cp agent.js alac/
|
||||
cp config.yaml alac/
|
||||
cp README.md alac/
|
||||
cp main.exe alac/
|
||||
cp main_atmos.exe alac/
|
||||
cp main_select.exe alac/
|
||||
|
||||
2
main.go
2
main.go
@@ -1060,7 +1060,7 @@ func checkArtist(artistUrl string, token string) ([]string, error) {
|
||||
}
|
||||
for _, album := range obj.Data {
|
||||
urls = append(urls, album.Attributes.URL)
|
||||
options = append(options, fmt.Sprintf("AlbumName: %s(%s)", album.Attributes.Name, album.ID))
|
||||
options = append(options, fmt.Sprintf("%s(%s)", album.Attributes.Name, album.ID))
|
||||
}
|
||||
Num = Num + 100
|
||||
if len(obj.Next) == 0 {
|
||||
|
||||
@@ -1006,7 +1006,7 @@ func checkArtist(artistUrl string, token string) ([]string, error) {
|
||||
}
|
||||
for _, album := range obj.Data {
|
||||
urls = append(urls, album.Attributes.URL)
|
||||
options = append(options, fmt.Sprintf("AlbumName: %s(%s)", album.Attributes.Name, album.ID))
|
||||
options = append(options, fmt.Sprintf("%s(%s)", album.Attributes.Name, album.ID))
|
||||
}
|
||||
Num = Num + 100
|
||||
if len(obj.Next) == 0 {
|
||||
|
||||
Reference in New Issue
Block a user