mirror of https://github.com/v2ray/v2ray-core
				
				
				
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			383 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			383 B
		
	
	
	
		
			Go
		
	
	
// +build json
 | 
						|
 | 
						|
package vmess
 | 
						|
 | 
						|
import (
 | 
						|
	"encoding/json"
 | 
						|
)
 | 
						|
 | 
						|
func (u *Account) UnmarshalJSON(data []byte) error {
 | 
						|
	type JsonConfig struct {
 | 
						|
		ID       string `json:"id"`
 | 
						|
		AlterIds uint16 `json:"alterId"`
 | 
						|
	}
 | 
						|
	var rawConfig JsonConfig
 | 
						|
	if err := json.Unmarshal(data, &rawConfig); err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	u.Id = rawConfig.ID
 | 
						|
	u.AlterId = uint32(rawConfig.AlterIds)
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 |