The convert command has a new flag: config

🐛 Fix Fetch func cannot return err
🐛 Fix cannot read templates correctly
This commit is contained in:
2024-05-23 16:57:19 +08:00
parent 9789354a51
commit 8f6e39b634
7 changed files with 117 additions and 43 deletions

View File

@@ -8,13 +8,15 @@ import (
func Fetch(url string, maxRetryTimes int) (string, error) {
retryTime := 0
var err error
var resp *http.Response
for retryTime < maxRetryTimes {
resp, err := http.Get(url)
resp, err = http.Get(url)
if err != nil {
retryTime++
continue
}
data, err := io.ReadAll(resp.Body)
var data []byte
data, err = io.ReadAll(resp.Body)
if err != nil {
retryTime++
continue