Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 61b4f47

Browse files
committed
最新go版本下载
1 parent 9082878 commit 61b4f47

File tree

3 files changed

+649
-174
lines changed

3 files changed

+649
-174
lines changed

install.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ go install server/indexer
2424
go install server/crawler
2525

2626
export GOPATH="$OLDGOPATH"
27-
export PATH="$OLDPATH"
2827

2928
echo 'finished'
3029

src/http/controller/feed.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ func (self FeedController) Atom(ctx echo.Context) error {
3434
func (self FeedController) List(ctx echo.Context) error {
3535
link := logic.WebsiteSetting.Domain
3636
if logic.WebsiteSetting.OnlyHttps {
37-
link = "https://" + link
37+
link = "https://" + link + "/"
3838
} else {
39-
link = "http://" + link
39+
link = "http://" + link + "/"
4040
}
4141

4242
now := time.Now()

0 commit comments

Comments
 (0)