zed-rpc/proto/zed.proto 🔗
@@ -17,7 +17,7 @@ message Envelope {
}
message Auth {
- uint64 user_id = 1;
+ int32 user_id = 1;
string access_token = 2;
}
Antonio Scandurra created
zed-rpc/proto/zed.proto | 2 +-
zed/src/workspace.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
@@ -17,7 +17,7 @@ message Envelope {
}
message Auth {
- uint64 user_id = 1;
+ int32 user_id = 1;
string access_token = 2;
}
@@ -697,7 +697,7 @@ impl Workspace {
.request(
connection_id,
proto::Auth {
- user_id: user_id.parse::<u64>()?,
+ user_id: user_id.parse()?,
access_token,
},
)