Fix thumbnail sitemap location
This commit is contained in:
parent
7089e7b4e5
commit
d22b9b3e20
|
@ -85,7 +85,7 @@ async function getSitemapLocalVideoUrls () {
|
||||||
// Sitemap description should be < 2000 characters
|
// Sitemap description should be < 2000 characters
|
||||||
description: truncate(v.description || v.name, { length: 2000, omission: '...' }),
|
description: truncate(v.description || v.name, { length: 2000, omission: '...' }),
|
||||||
player_loc: CONFIG.WEBSERVER.URL + '/videos/embed/' + v.uuid,
|
player_loc: CONFIG.WEBSERVER.URL + '/videos/embed/' + v.uuid,
|
||||||
thumbnail_loc: v.getThumbnailStaticPath()
|
thumbnail_loc: CONFIG.WEBSERVER.URL + v.getThumbnailStaticPath()
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}))
|
}))
|
||||||
|
|
Loading…
Reference in New Issue