rss.go: post no news until 5 minutes after startup

This commit is contained in:
an 2020-03-06 22:23:48 +01:00
parent 78056ade35
commit 2a404eaf12
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ func rssRun() {
xlog.Fatal(err.Error()) xlog.Fatal(err.Error())
} }
go func() { go func() {
time.Sleep(60 * time.Second) time.Sleep(300 * time.Second)
hideOutput = false hideOutput = false
}() }()
} }