Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
aspacca committed Jul 23, 2021
1 parent 3ea4ffd commit 3990c3c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
16 changes: 8 additions & 8 deletions server/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,14 +249,14 @@ func (s *Server) viewHandler(w http.ResponseWriter, r *http.Request) {
}

data := struct {
Hostname string
WebAddress string
GAKey string
UserVoiceKey string
PurgeTime string
Hostname string
WebAddress string
GAKey string
UserVoiceKey string
PurgeTime string
MaxUploadSize string
SampleToken string
SampleToken2 string
SampleToken string
SampleToken2 string
}{
hostname,
webAddress,
Expand Down Expand Up @@ -1043,7 +1043,7 @@ func (s *Server) getHandler(w http.ResponseWriter, r *http.Request) {
reader = ioutil.NopCloser(bluemonday.UGCPolicy().SanitizeReader(reader))
}

if w.Header().Get("Range") != "" || strings.HasPrefix(metadata.ContentType, "video") || strings.HasPrefix(metadata.ContentType, "audio") {
if w.Header().Get("Range") != "" || strings.HasPrefix(metadata.ContentType, "video") || strings.HasPrefix(metadata.ContentType, "audio") {
file, err := ioutil.TempFile(s.tempPath, "range-")
if err != nil {
s.logger.Printf("%s", err.Error())
Expand Down
5 changes: 2 additions & 3 deletions server/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,9 @@ func acceptsHTML(hdr http.Header) bool {

func formatSize(size int64) string {
sizeFloat := float64(size)
base := math.Log(sizeFloat)/math.Log(1024)
base := math.Log(sizeFloat) / math.Log(1024)

sizeOn := math.Pow(1024, base - math.Floor(base))
sizeOn := math.Pow(1024, base-math.Floor(base))

var round float64
pow := math.Pow(10, float64(2))
Expand All @@ -276,7 +276,6 @@ func formatSize(size int64) string {
suffixes[3] = "GB"
suffixes[4] = "TB"


getSuffix := suffixes[int(math.Floor(base))]
return fmt.Sprintf("%s %s", strconv.FormatFloat(newVal, 'f', -1, 64), getSuffix)
}

0 comments on commit 3990c3c

Please sign in to comment.