restrict length amount on small youtubers
This commit is contained in:
parent
5460224cd6
commit
259df8d257
2 changed files with 4 additions and 0 deletions
|
@ -168,6 +168,9 @@ func (s *SyncManager) Start() error {
|
||||||
}
|
}
|
||||||
for i, c := range channels {
|
for i, c := range channels {
|
||||||
log.Infof("There are %d channels in the \"%s\" queue", len(channels)-i, q)
|
log.Infof("There are %d channels in the \"%s\" queue", len(channels)-i, q)
|
||||||
|
if c.TotalSubscribers < 1000 {
|
||||||
|
s.maxVideoLength = 1.0
|
||||||
|
}
|
||||||
syncs = append(syncs, Sync{
|
syncs = append(syncs, Sync{
|
||||||
APIConfig: s.apiConfig,
|
APIConfig: s.apiConfig,
|
||||||
YoutubeChannelID: c.ChannelId,
|
YoutubeChannelID: c.ChannelId,
|
||||||
|
|
|
@ -56,6 +56,7 @@ type Fee struct {
|
||||||
type YoutubeChannel struct {
|
type YoutubeChannel struct {
|
||||||
ChannelId string `json:"channel_id"`
|
ChannelId string `json:"channel_id"`
|
||||||
TotalVideos uint `json:"total_videos"`
|
TotalVideos uint `json:"total_videos"`
|
||||||
|
TotalSubscribers uint `json:"total_subscribers"`
|
||||||
DesiredChannelName string `json:"desired_channel_name"`
|
DesiredChannelName string `json:"desired_channel_name"`
|
||||||
Fee *Fee `json:"fee"`
|
Fee *Fee `json:"fee"`
|
||||||
ChannelClaimID string `json:"channel_claim_id"`
|
ChannelClaimID string `json:"channel_claim_id"`
|
||||||
|
|
Loading…
Reference in a new issue