* Prohibit variable shadowing

* Fix outstanding shadowed variables
Этот коммит содержится в:
Hanzei
2019-01-31 12:16:16 +01:00
коммит произвёл Jesús Espino
родитель cd30a1f242
Коммит 0c981aa010
3 изменённых файлов: 4 добавлений и 4 удалений

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

@@ -330,7 +330,7 @@ func (a *App) getLinkMetadata(requestURL string, timestamp int64, isNewPost bool
// Check the database if this isn't a new post. If it is a new post and the data is cached, it should be in memory.
if !isNewPost {
og, image, ok := a.getLinkMetadataFromDatabase(requestURL, timestamp)
og, image, ok = a.getLinkMetadataFromDatabase(requestURL, timestamp)
if ok {
cacheLinkMetadata(requestURL, timestamp, og, image)