mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 03:26:04 +01:00
fix: path on windows, #13119
This commit is contained in:
@@ -71,9 +71,10 @@ Thumbs.get = async function (tids, options) {
|
|||||||
|
|
||||||
if (!options.thumbsOnly) {
|
if (!options.thumbsOnly) {
|
||||||
// Add uploaded media to thumb sets
|
// Add uploaded media to thumb sets
|
||||||
const mainPidUploads = await Promise.all(mainPids.map(async pid => await posts.uploads.list(pid)));
|
const mainPidUploads = await Promise.all(mainPids.map(posts.uploads.list));
|
||||||
mainPidUploads.forEach((uploads, idx) => {
|
mainPidUploads.forEach((uploads, idx) => {
|
||||||
uploads = uploads.map(path => `/${path}`);
|
uploads = uploads.map(upath => path.join(path.sep, `${upath}`));
|
||||||
|
|
||||||
uploads = uploads.filter((upload) => {
|
uploads = uploads.filter((upload) => {
|
||||||
const type = mime.getType(upload);
|
const type = mime.getType(upload);
|
||||||
return !thumbs[idx].includes(upload) && type && type.startsWith('image/');
|
return !thumbs[idx].includes(upload) && type && type.startsWith('image/');
|
||||||
|
|||||||
Reference in New Issue
Block a user