1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-09-15 18:57:04 +00:00

fix(entry): remove unnecessary locale import and simplify fetchContent response

This commit is contained in:
AiraNadih 2025-04-15 20:08:54 +00:00
parent 5b2e1026a8
commit 1bd5e0ffea

View file

@ -13,7 +13,6 @@ import (
"miniflux.app/v2/internal/http/request" "miniflux.app/v2/internal/http/request"
"miniflux.app/v2/internal/http/response/json" "miniflux.app/v2/internal/http/response/json"
"miniflux.app/v2/internal/integration" "miniflux.app/v2/internal/integration"
"miniflux.app/v2/internal/locale"
"miniflux.app/v2/internal/mediaproxy" "miniflux.app/v2/internal/mediaproxy"
"miniflux.app/v2/internal/model" "miniflux.app/v2/internal/model"
"miniflux.app/v2/internal/reader/processor" "miniflux.app/v2/internal/reader/processor"
@ -337,9 +336,7 @@ func (h *handler) fetchContent(w http.ResponseWriter, r *http.Request) {
return return
} }
readingTime := locale.NewPrinter(user.Language).Plural("entry.estimated_reading_time", entry.ReadingTime, entry.ReadingTime) json.OK(w, r, map[string]string{"content": mediaproxy.RewriteDocumentWithRelativeProxyURL(h.router, entry.Content)})
json.OK(w, r, map[string]string{"content": mediaproxy.RewriteDocumentWithRelativeProxyURL(h.router, entry.Content), "reading_time": readingTime})
} }
func (h *handler) flushHistory(w http.ResponseWriter, r *http.Request) { func (h *handler) flushHistory(w http.ResponseWriter, r *http.Request) {