We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51464eb commit 6021607Copy full SHA for 6021607
1 file changed
app.go
@@ -261,7 +261,7 @@ type UpdateInfo struct {
261
// CheckForUpdate 检查更新(优先使用自定义服务器,失败时降级到 GitHub API)
262
func (a *App) CheckForUpdate(owner, repo string) (*UpdateInfo, error) {
263
// 优先尝试从自定义服务器获取
264
- customURL := "http://gotool.51godream.com/version.json"
+ customURL := "https://devtools.51godream.com/version.json"
265
updateInfo, err := a.checkCustomServer(customURL)
266
if err == nil {
267
return updateInfo, nil
0 commit comments