From 71e86b9b3dc48e558ebcfde438be61242079637a Mon Sep 17 00:00:00 2001 From: Mrs4s Date: Mon, 13 Mar 2023 01:23:04 +0800 Subject: [PATCH] rename: AppVersion.ReadJson -> AppVersion.UpdateFromJson --- client/global.go | 2 +- client/internal/auth/auth.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/global.go b/client/global.go index c13f4108..9ce718e7 100644 --- a/client/global.go +++ b/client/global.go @@ -110,7 +110,7 @@ func UpdateAppVersion(protocolType auth.ProtocolType, data []byte) error { if _, ok := auth.AppVersions[protocolType]; !ok { return errors.New("unknown protocol type: " + strconv.Itoa(int(protocolType))) } - return auth.AppVersions[protocolType].ReadJson(data) + return auth.AppVersions[protocolType].UpdateFromJson(data) } func getSSOAddress(device *auth.Device) ([]netip.AddrPort, error) { diff --git a/client/internal/auth/auth.go b/client/internal/auth/auth.go index f2ca18b8..1a91754a 100644 --- a/client/internal/auth/auth.go +++ b/client/internal/auth/auth.go @@ -168,7 +168,7 @@ func (v *AppVersion) String() string { return fmt.Sprintf("%s %s - %v", v.Protocol.String(), v.SortVersionName, v.BuildTime) } -func (v *AppVersion) ReadJson(d []byte) error { +func (v *AppVersion) UpdateFromJson(d []byte) error { var f appVersionFile if err := json.Unmarshal(d, &f); err != nil { return errors.Wrap(err, "failed to unmarshal json message")