Skip to content

Commit b37b4d5

Browse files
Made the client send the password when you send a message
I forgot to do this and thank you to lncvrt for bringing this to my attention. This should be the only client side fix. Now I just have to fix server side stuff.
1 parent 7238174 commit b37b4d5

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1601,6 +1601,7 @@ async fn main() {
16011601
send_chat_response = ureq::post(&send_chat_url)
16021602
.send_form([
16031603
("user", username.clone()),
1604+
("pass", password.clone()),
16041605
("msg", chat_textbox.input)
16051606
])
16061607
.unwrap()

0 commit comments

Comments
 (0)