ignore error explicitly

This commit is contained in:
A.Unger
2021-07-19 11:15:37 +02:00
parent 7f8e5d0229
commit ebb67470dc

View File

@@ -73,7 +73,5 @@ func HandleWebdavError(w http.ResponseWriter, b []byte, err error) {
w.WriteHeader(http.StatusInternalServerError)
return
}
_, err = w.Write(b)
if err != nil {
}
_, _ = w.Write(b)
}