🐛 Fix: Error handling code for the makeFolder
The previous code had a condition where it was using the wrong variable, thus was impossible to reach.
This commit is contained in:
parent
68eef8524c
commit
2457ee9836
1 changed files with 2 additions and 5 deletions
|
@ -82,7 +82,6 @@ func bundleFilesToZip(folderPath string, destination string) error {
|
|||
|
||||
return nil
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
log.Printf("Error bundling files to zip: %v", err)
|
||||
return err
|
||||
|
@ -123,10 +122,10 @@ func exportFiles(w http.ResponseWriter, r *http.Request) {
|
|||
|
||||
// Create a temporary folder to store the exported files
|
||||
tempFolder := filepath.Join(".", "temp")
|
||||
err2 := makeFolder(tempFolder)
|
||||
err = makeFolder(tempFolder)
|
||||
if err != nil {
|
||||
http.Error(w, "Error creating temporary folder", http.StatusInternalServerError)
|
||||
log.Println(err2)
|
||||
log.Println(err)
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -164,7 +163,6 @@ func exportFiles(w http.ResponseWriter, r *http.Request) {
|
|||
|
||||
return nil
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
http.Error(w, "Error converting HTML files to Markdown", http.StatusInternalServerError)
|
||||
log.Println(err)
|
||||
|
@ -257,7 +255,6 @@ func copyFolder(source string, destination string) error {
|
|||
|
||||
return nil
|
||||
})
|
||||
|
||||
if err != nil {
|
||||
log.Printf("Error copying folder: %v", err)
|
||||
return err
|
||||
|
|
Loading…
Reference in a new issue