From 527f1849444356336397016e28b42067299bb527 Mon Sep 17 00:00:00 2001 From: xenofem Date: Wed, 27 Apr 2022 01:31:34 -0400 Subject: [PATCH] fix type error --- src/upload.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/upload.rs b/src/upload.rs index 1066d76..c864247 100644 --- a/src/upload.rs +++ b/src/upload.rs @@ -217,7 +217,7 @@ impl Uploader { }, ); } - ack(ctx); + ctx.text(self.storage_filename.as_str()); } ws::Message::Binary(data) | ws::Message::Continuation(Item::FirstBinary(data))