Skip to content

Commit

Permalink
use int64 to match go type
Browse files Browse the repository at this point in the history
  • Loading branch information
FZambia committed May 10, 2024
1 parent 31e49cb commit 7a9ecd0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions client.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions client.pb_easyjson.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client.proto
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ message ConnectResult {
bool pong = 8;
string session = 9;
string node = 10;
uint64 time_ms = 11; // Server time as Unix timestamp in milliseconds (not sent by default).
int64 time_ms = 11; // Server time as Unix timestamp in milliseconds (not sent by default).
}

message RefreshRequest {
Expand Down
2 changes: 1 addition & 1 deletion client_vtproto.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion definitions/client.proto
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ message ConnectResult {
bool pong = 8;
string session = 9;
string node = 10;
uint64 time_ms = 11; // Server time as Unix timestamp in milliseconds (not sent by default).
int64 time_ms = 11; // Server time as Unix timestamp in milliseconds (not sent by default).
}

message RefreshRequest {
Expand Down

0 comments on commit 7a9ecd0

Please sign in to comment.