Этот коммит содержится в:
Corey Hulen
2017-02-15 21:06:30 -05:00
коммит произвёл GitHub
родитель e505577abf
Коммит a7ea2d20cf
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@@ -79,7 +79,7 @@ func (es SqlEmojiStore) Get(id string, allowFromCache bool) StoreChannel {
if metrics != nil {
metrics.IncrementMemCacheHitCounter("Emoji")
}
result.Data = cacheItem.(map[string]*model.Emoji)
result.Data = cacheItem.(*model.Emoji)
storeChannel <- result
close(storeChannel)
return