mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	Fix bug
This commit is contained in:
		
							parent
							
								
									72d5a2f9b9
								
							
						
					
					
						commit
						534ef9e999
					
				
					 1 changed files with 1 additions and 5 deletions
				
			
		| 
						 | 
					@ -8,10 +8,6 @@ import User from '../../../../models/user';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * Get notes of a user
 | 
					 * Get notes of a user
 | 
				
			||||||
 *
 | 
					 | 
				
			||||||
 * @param {any} params
 | 
					 | 
				
			||||||
 * @param {any} me
 | 
					 | 
				
			||||||
 * @return {Promise<any>}
 | 
					 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
module.exports = (params, me) => new Promise(async (res, rej) => {
 | 
					module.exports = (params, me) => new Promise(async (res, rej) => {
 | 
				
			||||||
	// Get 'userId' parameter
 | 
						// Get 'userId' parameter
 | 
				
			||||||
| 
						 | 
					@ -118,7 +114,7 @@ module.exports = (params, me) => new Promise(async (res, rej) => {
 | 
				
			||||||
	if (withMedia) {
 | 
						if (withMedia) {
 | 
				
			||||||
		query.mediaIds = {
 | 
							query.mediaIds = {
 | 
				
			||||||
			$exists: true,
 | 
								$exists: true,
 | 
				
			||||||
			$ne: null
 | 
								$ne: []
 | 
				
			||||||
		};
 | 
							};
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	//#endregion
 | 
						//#endregion
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue