From b5f1c42d26986e8dd640561f135d7652dbcbc998 Mon Sep 17 00:00:00 2001 From: Parthiban M Date: Mon, 31 Mar 2025 07:45:31 +0530 Subject: [PATCH] Fix: Downloading with password enabled (#246) * Fix: Downloading with password enabled * Update src/hooks/useDownloader.ts --------- Co-authored-by: Alex Kern --- src/hooks/useDownloader.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hooks/useDownloader.ts b/src/hooks/useDownloader.ts index 900447c..811da03 100644 --- a/src/hooks/useDownloader.ts +++ b/src/hooks/useDownloader.ts @@ -86,6 +86,7 @@ export function useDownloader(uploaderPeerID: string): { break case MessageType.Info: setFilesInfo(message.files) + setIsPasswordRequired(false) break case MessageType.Chunk: processChunk.current?.(message)