Correctly abort on file missing without panic

This commit is contained in:
Dane Everitt 2021-01-21 20:58:40 -08:00
parent 8920f919b1
commit 56af6fc1f8
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -30,6 +30,7 @@ func getServerFileContents(c *gin.Context) {
f, st, err := s.Filesystem().File(p)
if err != nil {
middleware.CaptureAndAbort(c, err)
return
}
defer f.Close()
@ -48,6 +49,7 @@ func getServerFileContents(c *gin.Context) {
// take since a panic will at least be recovered and this should be incredibly
// rare?
middleware.CaptureAndAbort(c, err)
return
}
}