copy readme
This commit is contained in:
parent
93cfd3f7f7
commit
dde4c9444c
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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user