Fix index generation error

This commit is contained in:
Elara 2020-12-05 17:13:38 -08:00
parent 59b2b69bc7
commit 016ac8ef57
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ func SendFiles(dir string) {
// If the file is not the key // If the file is not the key
if !strings.Contains(file.Name(), "key.aes") { if !strings.Contains(file.Name(), "key.aes") {
// Append the file path to indexSlice // Append the file path to indexSlice
indexSlice = append(indexSlice, dir + "/" + file.Name()) indexSlice = append(indexSlice, file.Name())
} }
} }
// Join index slice into string // Join index slice into string
@ -142,7 +142,7 @@ func RecvFiles(senderAddr string) {
// If server responded with 200 OK // If server responded with 200 OK
if response.StatusCode == http.StatusOK { if response.StatusCode == http.StatusOK {
// Create new file at index filepath // Create new file at index filepath
newFile, err := os.Create(file) newFile, err := os.Create(opensendDir + "/" + file)
if err != nil { log.Fatal().Err(err).Msg("Error creating file") } if err != nil { log.Fatal().Err(err).Msg("Error creating file") }
// Copy response body to new file // Copy response body to new file
bytesWritten, err := io.Copy(newFile, response.Body) bytesWritten, err := io.Copy(newFile, response.Body)