diff --git a/config/filters/media.js b/config/filters/media.js
index b349d82f..ac2d22c7 100644
--- a/config/filters/media.js
+++ b/config/filters/media.js
@@ -1,14 +1,11 @@
export default {
bookStatus: (books, status) => books.filter(book => book['status'] === status),
bookFavorites: (books) => books.filter(book => book.favorite === true),
- bookYearLinks: (years) => years.sort((a, b) => b.value - a.value).map((year, index) => {
- const separator = index < years.length - 1 ? ' / ' : ''
- return `${year.value}${separator}`
- }).join(''),
- bookFinishedYear: (books, year) => books.filter(book => {
- if (book['status'] === 'finished' && book['year']) return parseInt(book['year']) === parseInt(year)
- return ''
- }),
+ bookYearLinks: (years) => years
+ .sort((a, b) => b.value - a.value)
+ .map((year, index) => `${year.value}${index < years.length - 1 ? ' / ' : ''}`)
+ .join(''),
+ bookFinishedYear: (books, year) => books.filter(book => book.status === 'finished' && parseInt(book.year) === parseInt(year)),
mediaLinks: (data, type, count = 10) => {
if (!data || !type) return ''