fix: replace boolean function with ? : expressions
This commit is contained in:
		
							parent
							
								
									f586bead0f
								
							
						
					
					
						commit
						f7c6f8ac3d
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -225,7 +225,7 @@ export default class Misskey implements MegalodonInterface {
 | 
			
		|||
    if (options) {
 | 
			
		||||
      if (options.bot !== undefined) {
 | 
			
		||||
        params = Object.assign(params, {
 | 
			
		||||
          isBot: Boolean(options.bot)
 | 
			
		||||
          isBot: options.bot.toString() === 'true' ? true : false
 | 
			
		||||
        })
 | 
			
		||||
      }
 | 
			
		||||
      if (options.display_name) {
 | 
			
		||||
| 
						 | 
				
			
			@ -240,7 +240,7 @@ export default class Misskey implements MegalodonInterface {
 | 
			
		|||
      }
 | 
			
		||||
      if (options.locked !== undefined) {
 | 
			
		||||
        params = Object.assign(params, {
 | 
			
		||||
          isLocked: Boolean(options.locked)
 | 
			
		||||
          isLocked: options.locked.toString() === 'true' ? true : false
 | 
			
		||||
        })
 | 
			
		||||
      }
 | 
			
		||||
      if (options.source) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue