Fix thumbnail sitemap location

This commit is contained in:
Chocobozzz 2018-12-06 09:29:00 +01:00
parent 7089e7b4e5
commit d22b9b3e20
No known key found for this signature in database
GPG Key ID: 583A612D890159BE

View File

@ -85,7 +85,7 @@ async function getSitemapLocalVideoUrls () {
// Sitemap description should be < 2000 characters
description: truncate(v.description || v.name, { length: 2000, omission: '...' }),
player_loc: CONFIG.WEBSERVER.URL + '/videos/embed/' + v.uuid,
thumbnail_loc: v.getThumbnailStaticPath()
thumbnail_loc: CONFIG.WEBSERVER.URL + v.getThumbnailStaticPath()
}
]
}))