mirror of
https://github.com/Mrs4s/MiraiGo.git
synced 2025-06-18 13:35:03 +08:00
rename: AppVersion.ReadJson -> AppVersion.UpdateFromJson
This commit is contained in:
parent
653b853ca5
commit
71e86b9b3d
@ -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) {
|
||||
|
@ -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")
|
||||
|
Loading…
x
Reference in New Issue
Block a user