Unknwon лет назад: 8
Родитель
Сommit
f76d821bda
2 измененных файлов с 4 добавлено и 1 удалено
  1. 3 0
      cmd/web.go
  2. 1 1
      models/release.go

+ 3 - 0
cmd/web.go

@@ -194,6 +194,9 @@ func runWeb(ctx *cli.Context) {
 	// Routers.
 	m.Get("/", ignSignIn, routers.Home)
 	m.Group("/explore", func() {
+		m.Get("", func(ctx *context.Context) {
+			ctx.Redirect(setting.AppSubUrl + "/explore/repos")
+		})
 		m.Get("/repos", routers.ExploreRepos)
 		m.Get("/users", routers.ExploreUsers)
 	}, ignSignIn)

+ 1 - 1
models/release.go

@@ -39,7 +39,7 @@ type Release struct {
 }
 
 func (r *Release) BeforeInsert() {
-	r.CreatedUnix = r.Created.UTC().Unix()
+	r.CreatedUnix = time.Now().UTC().Unix()
 }
 
 func (r *Release) AfterSet(colName string, _ xorm.Cell) {