diff options
Diffstat (limited to 'rhimport')
-rw-r--r-- | rhimport/fetcher.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rhimport/fetcher.go b/rhimport/fetcher.go index 966402c..4819e92 100644 --- a/rhimport/fetcher.go +++ b/rhimport/fetcher.go @@ -203,11 +203,11 @@ var weekdays = [...]string{ func generateArchivFilePath(uri *url.URL) (file, path string, err error) { var t time.Time - if t, err = time.Parse("2006/01/02/15", fmt.Sprintf("%s%s", uri.Host, uri.Path)); err != nil { + if t, err = time.Parse("2006/01/02/15/04", fmt.Sprintf("%s%s", uri.Host, uri.Path)); err != nil { return } - file = t.Format("2006-01-02-15") + "00.ogg" + file = t.Format("2006-01-02-1504") + ".ogg" // TODO: make basepath configurable path = fmt.Sprintf("/srv/archiv/%04d/%02d-%s/%02d-%s", t.Year(), t.Month(), months[t.Month()-1], t.Day(), weekdays[t.Weekday()]) |