mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-10 00:22:27 +08:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
41704917db | ||
|
|
f6ba716f55 | ||
|
|
b2e6c168c5 |
@@ -2,6 +2,14 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||||
|
|
||||||
|
### [2.1.18](https://github.com/eiblog/eiblog/compare/v2.1.17...v2.1.18) (2023-01-05)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **backup:** can not execute ([f6ba716](https://github.com/eiblog/eiblog/commit/f6ba716f554cfb638752875c4842e4ffb1b7e9a6))
|
||||||
|
* disqus api using http post ([b2e6c16](https://github.com/eiblog/eiblog/commit/b2e6c168c5f63b29cf5c2884e04dd99caa677bc0))
|
||||||
|
|
||||||
### [2.1.17](https://github.com/eiblog/eiblog/compare/v2.1.16...v2.1.17) (2023-01-05)
|
### [2.1.17](https://github.com/eiblog/eiblog/compare/v2.1.16...v2.1.17) (2023-01-05)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ FROM alpine:latest
|
|||||||
LABEL maintainer="deepzz.qi@gmail.com"
|
LABEL maintainer="deepzz.qi@gmail.com"
|
||||||
|
|
||||||
RUN sed -i "s/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g" /etc/apk/repositories \
|
RUN sed -i "s/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g" /etc/apk/repositories \
|
||||||
&& apk add --update --no-cache tzdata ca-certificates mongodb-tools
|
&& apk add --update --no-cache tzdata ca-certificates mongodb-tools libc6-compat
|
||||||
COPY README.md /app/README.md
|
COPY README.md /app/README.md
|
||||||
COPY CHANGELOG.md /app/CHANGELOG.md
|
COPY CHANGELOG.md /app/CHANGELOG.md
|
||||||
COPY LICENSE /app/LICENSE
|
COPY LICENSE /app/LICENSE
|
||||||
|
|||||||
@@ -317,7 +317,7 @@ func ThreadDetails(article *model.Article) error {
|
|||||||
vals.Set("forum", config.Conf.EiBlogApp.Disqus.ShortName)
|
vals.Set("forum", config.Conf.EiBlogApp.Disqus.ShortName)
|
||||||
vals.Set("thread:ident", "post-"+article.Slug)
|
vals.Set("thread:ident", "post-"+article.Slug)
|
||||||
|
|
||||||
resp, err := httpPost(apiThreadDetails, vals)
|
resp, err := httpGet(apiThreadDetails + "?" + vals.Encode())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user