remove /1 from url if it goes to first post of topic

isekai-main
Barış Soner Uşaklı 2 years ago
parent fcc04ef376
commit e5fc4a5210

@ -44,7 +44,8 @@ module.exports = function (Posts) {
const postIndex = utils.isNumber(indices[index]) ? parseInt(indices[index], 10) + 1 : null; const postIndex = utils.isNumber(indices[index]) ? parseInt(indices[index], 10) + 1 : null;
if (slug && postIndex) { if (slug && postIndex) {
return `/topic/${slug}/${postIndex}`; const index = postIndex === 1 ? '' : `/${postIndex}`;
return `/topic/${slug}${index}`;
} }
return null; return null;
}); });

Loading…
Cancel
Save