File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ async function getPopularUploads(){
37
37
} ;
38
38
39
39
const selectString = 'rating title views checkedViews uploader fileType thumbnailUrl ' +
40
- 'uploadUrl uniqueTag customThumbnailUrl fileExtension thumbnails reacts uncurated category subcategory' ;
40
+ 'uploadUrl uniqueTag customThumbnailUrl fileExtension thumbnails reacts uncurated category subcategory description ' ;
41
41
42
42
let popularUploads = await Upload . find ( searchQuery ) . select ( selectString ) . populate ( 'uploader reacts' )
43
43
. lean ( ) ;
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ async function getRecentUploads(){
38
38
} ;
39
39
40
40
const selectString = 'rating title views uploader fileType thumbnailUrl ' +
41
- 'uploadUrl uniqueTag customThumbnailUrl fileExtension thumbnails reacts uncurated category subcategory createdAt' ;
41
+ 'uploadUrl uniqueTag customThumbnailUrl fileExtension thumbnails reacts uncurated category subcategory createdAt description ' ;
42
42
43
43
let recentUploads = await Upload . find ( searchQuery ) . select ( selectString ) . populate ( 'uploader reacts' )
44
44
. sort ( { createdAt : - 1 } )
You can’t perform that action at this time.
0 commit comments