1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

Auto-migrate custom languages.

This commit is contained in:
Ferdinand Mütsch
2019-05-21 22:01:14 +02:00
parent cdf158e2ac
commit df7b2d4a33
3 changed files with 19 additions and 5 deletions

View File

@ -2,7 +2,6 @@ package routes
import (
"crypto/md5"
"fmt"
"net/http"
"strconv"
"time"
@ -75,7 +74,6 @@ func (h *SummaryHandler) Get(w http.ResponseWriter, r *http.Request) {
cachedSummary, ok := h.Cache.Get(cacheKey)
if !ok {
// Cache Miss
fmt.Println("Cache miss")
summary, err = h.SummarySrvc.GetSummary(from, to, user) // 'to' is always constant
if err != nil {
w.WriteHeader(http.StatusInternalServerError)