Add missing return in fetchContent ui handler
This commit is contained in:
parent
69738bce84
commit
5ce912beea
1 changed files with 3 additions and 4 deletions
|
@ -34,12 +34,10 @@ func (h *handler) fetchContent(w http.ResponseWriter, r *http.Request) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
user, err := h.store.UserByID(entry.UserID)
|
user, err := h.store.UserByID(loggedUserID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
json.ServerError(w, r, err)
|
json.ServerError(w, r, err)
|
||||||
}
|
return
|
||||||
if user == nil {
|
|
||||||
json.NotFound(w, r)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
feedBuilder := storage.NewFeedQueryBuilder(h.store, loggedUserID)
|
feedBuilder := storage.NewFeedQueryBuilder(h.store, loggedUserID)
|
||||||
|
@ -62,6 +60,7 @@ func (h *handler) fetchContent(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
if err := h.store.UpdateEntryContent(entry); err != nil {
|
if err := h.store.UpdateEntryContent(entry); err != nil {
|
||||||
json.ServerError(w, r, err)
|
json.ServerError(w, r, err)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
readingTime := locale.NewPrinter(user.Language).Plural("entry.estimated_reading_time", entry.ReadingTime, entry.ReadingTime)
|
readingTime := locale.NewPrinter(user.Language).Plural("entry.estimated_reading_time", entry.ReadingTime, entry.ReadingTime)
|
||||||
|
|
Loading…
Reference in a new issue