fix issues

This commit is contained in:
Rogee
2024-09-02 16:35:10 +08:00
parent 07b700b158
commit 472fe2ffaf
2 changed files with 23 additions and 6 deletions

View File

@@ -57,5 +57,9 @@ func exportCmd(ctx context.Context) error {
}
// https://t.me/yunpanshare/37426
return client.Channel(ctx, channel, cfg, modeHistory)
for {
if err := client.Channel(ctx, channel, cfg, modeHistory); err != nil {
return err
}
}
}