Skip to content

Commit

Permalink
🎨 公测云端同步数据仓库 #5337
Browse files Browse the repository at this point in the history
  • Loading branch information
88250 committed Jul 4, 2022
1 parent bdb635d commit 38cb07c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kernel/model/repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -230,12 +230,12 @@ func IndexRepo(memo string) (err error) {

if nil != latest {
if latest.ID != index.ID {
util.PushStatusBar(fmt.Sprintf(Conf.Language(147)+" [%s]", elapsed.Seconds(), latest.ID[:7]))
util.PushStatusBar(fmt.Sprintf(Conf.Language(147)+" [%s]", elapsed.Seconds(), index.ID[:7]))
} else {
util.PushStatusBar(Conf.Language(148) + " [" + latest.ID[:7] + "]")
util.PushStatusBar(Conf.Language(148) + " [" + index.ID[:7] + "]")
}
} else {
util.PushStatusBar(fmt.Sprintf(Conf.Language(147)+" [%s]", elapsed.Seconds(), latest.ID[:7]))
util.PushStatusBar(fmt.Sprintf(Conf.Language(147)+" [%s]", elapsed.Seconds(), index.ID[:7]))
}
util.PushClearProgress()
return
Expand Down

0 comments on commit 38cb07c

Please sign in to comment.