summaryrefslogtreecommitdiff
path: root/internal/media/util.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/media/util.go')
-rw-r--r--internal/media/util.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/internal/media/util.go b/internal/media/util.go
index 7efd788a1..60661cbc0 100644
--- a/internal/media/util.go
+++ b/internal/media/util.go
@@ -23,7 +23,6 @@ import (
"errors"
"fmt"
"io"
- "time"
"github.com/h2non/filetype"
"github.com/superseriousbusiness/gotosocial/internal/log"
@@ -134,22 +133,6 @@ func (l *logrusWrapper) Error(err error, msg string, keysAndValues ...interface{
log.Error("media manager cron logger: ", err, msg, keysAndValues)
}
-func parseOlderThan(olderThanDays int) (time.Time, error) {
- // convert days into a duration string
- olderThanHoursString := fmt.Sprintf("%dh", olderThanDays*24)
-
- // parse the duration string into a duration
- olderThanHours, err := time.ParseDuration(olderThanHoursString)
- if err != nil {
- return time.Time{}, err
- }
-
- // 'subtract' that from the time now to give our threshold
- olderThan := time.Now().Add(-olderThanHours)
-
- return olderThan, nil
-}
-
// lengthReader wraps a reader and reads the length of total bytes written as it goes.
type lengthReader struct {
source io.Reader