1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-13 11:20:42 +00:00

fix version format

This commit is contained in:
Darien Raymond 2018-02-24 02:14:50 +01:00
parent a42b4b513e
commit dfd4d397bb
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -31,7 +31,7 @@ func Version() string {
// VersionStatement returns a list of strings representing the full version info. // VersionStatement returns a list of strings representing the full version info.
func VersionStatement() []string { func VersionStatement() []string {
return []string{ return []string{
serial.Concat("V2Ray ", Version(), "(", codename, ")", build), serial.Concat("V2Ray ", Version(), " (", codename, ") ", build),
intro, intro,
} }
} }