Fix corrected improper use of reader and bReader

Co-authored-by: x_123 <x@a>
This commit is contained in:
TsingShui 2024-10-16 20:40:03 +08:00 committed by 世界
parent e93d0408be
commit 956ee361df
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -218,7 +218,7 @@ func DecodeProfileContent(data []byte) (*ProfileContent, error) {
if err != nil { if err != nil {
return nil, err return nil, err
} }
err = binary.Read(reader, binary.BigEndian, &content.Type) err = binary.Read(bReader, binary.BigEndian, &content.Type)
if err != nil { if err != nil {
return nil, err return nil, err
} }
@ -233,17 +233,17 @@ func DecodeProfileContent(data []byte) (*ProfileContent, error) {
} }
} }
if content.Type == ProfileTypeRemote || (version == 0 && content.Type != ProfileTypeLocal) { if content.Type == ProfileTypeRemote || (version == 0 && content.Type != ProfileTypeLocal) {
err = binary.Read(reader, binary.BigEndian, &content.AutoUpdate) err = binary.Read(bReader, binary.BigEndian, &content.AutoUpdate)
if err != nil { if err != nil {
return nil, err return nil, err
} }
if version >= 1 { if version >= 1 {
err = binary.Read(reader, binary.BigEndian, &content.AutoUpdateInterval) err = binary.Read(bReader, binary.BigEndian, &content.AutoUpdateInterval)
if err != nil { if err != nil {
return nil, err return nil, err
} }
} }
err = binary.Read(reader, binary.BigEndian, &content.LastUpdated) err = binary.Read(bReader, binary.BigEndian, &content.LastUpdated)
if err != nil { if err != nil {
return nil, err return nil, err
} }