From 9f1fd48acd81905a32e6ae7e1a6d170f8c713f0b Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Tue, 10 Aug 2021 23:29:14 -0400 Subject: [PATCH] Fix splitter bug --- src/unstable/Picocrypt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unstable/Picocrypt.go b/src/unstable/Picocrypt.go index cb9d512..4e693e9 100644 --- a/src/unstable/Picocrypt.go +++ b/src/unstable/Picocrypt.go @@ -804,7 +804,7 @@ func onDrop(names []string){ } // Open input file in read-only mode - fin,_ := os.Open(names[0]) + fin,_ := os.Open(names[0]+".pcv.0") // Use regex to test if input is a valid Picocrypt volume tmp := make([]byte,30)